From 039c4473805b62700a28202c23c04404e26b116d Mon Sep 17 00:00:00 2001 From: Philipp Gampe Date: Wed, 20 Jul 2011 22:56:55 +0200 Subject: [PATCH] [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 --- typo3/class.filelistfoldertree.php | 7 +++++++ 1 file changed, 7 insertions(+) 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. * -- 2.20.1