From: Philipp Gampe Date: Wed, 20 Jul 2011 20:56:55 +0000 (+0200) Subject: [BUGFIX] Regression: filelistFolderTree constructor is recursive X-Git-Tag: TYPO3_4-6-0beta1~94 X-Git-Url: http://git.typo3.org/Packages/TYPO3.CMS.git/commitdiff_plain/039c4473805b62700a28202c23c04404e26b116d [BUGFIX] Regression: filelistFolderTree constructor is recursive After fix of compatibility constructor, the real constructor (__construct) is missing. This leads to a recursive call on itself and thus crashes. Change-Id: Ic788b8dfb9ae42a4ad7c1b9a122f31de1df98741 Fixes: #28354 Releases: 4.6 Reviewed-on: http://review.typo3.org/3445 Reviewed-by: Georg Ringer Reviewed-by: Xavier Perseguers Tested-by: Xavier Perseguers --- diff --git a/typo3/class.filelistfoldertree.php b/typo3/class.filelistfoldertree.php index c6d0269dd860..d315d98d8c29 100644 --- a/typo3/class.filelistfoldertree.php +++ b/typo3/class.filelistfoldertree.php @@ -64,6 +64,13 @@ class filelistFolderTree extends t3lib_folderTree { var $ext_IconMode; var $ajaxStatus = FALSE; // Indicates, whether the ajax call was successful, i.e. the requested page has been found + /** + * Init parent class + */ + public function __construct() { + parent::__construct(); + } + /** * Compatibility constructor. *