Actions
Bug #62409
closedTYPO3 4.5.37 not compatible with PHP 5.2.x
Status:
Closed
Priority:
Must have
Assignee:
-
Category:
-
Target version:
-
Start date:
2014-10-22
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
4.5
PHP Version:
5.2
Tags:
Complexity:
easy
Is Regression:
No
Sprint Focus:
Description
On typo3.org the system requirements for TYPO3 4.5 state a minimum version of PHP 5.2.
After upgrading a system from 4.5.36 to 4.5.37 I encountered the following error message in FE:
Fatal error: func_get_args(): Can't be used as a function parameter in t3lib/class.t3lib_div.php on line 5432
The function func_get_args() can't be used as a function parameter in PHP < 5.3. In PHP versions <= 5.2 the output of the function needs to be saved to a variable which then can be used as parameter.
Possible fix (of course a better fix is to switch to PHP 5.3 or higher):
Replace
$instance = self::instantiateClass($finalClassName, func_get_args());
with
$v = func_get_args(); $instance = self::instantiateClass($finalClassName, $v);
Actions