Actions
Bug #14522
closedphpinfo() page results in "Call to undefined function: imagetypes() in class.tx_install.php on line 943"
Start date:
2005-02-02
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
3.7.0
PHP Version:
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
When PHP is compiled without the GD module, any call to imagetypes() is determined to fail with the error message "Call to undefined function: imagetypes()". This call is used in class.t3lib_install.php on line 943.
Suggestion: Replace the code in line 943 by
$sVar["OTHER: IMAGE_TYPES"]=function_exists("imagetypes") ? imagetypes() : 0;
(issue imported from #M734)
Actions