Actions
Bug #14309
closedcheck for php version fails
Status:
Closed
Priority:
Should have
Assignee:
-
Category:
Backend API
Target version:
-
Start date:
2004-09-10
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
3.7-dev
PHP Version:
Tags:
Complexity:
Is Regression:
Sprint Focus:
Description
typo3/sysext/cms/tslib//index_ts.php line 118
if (t3lib_div::int_from_ver(phpversion())<4100000) die ('TYPO3 runs with PHP4.1.0+ only');
should be changed to
if (t3lib_div::int_from_ver(phpversion())<4001000) die ('TYPO3 runs with PHP4.1.0+ only');
(issue imported from #M349)
Updated by Hans J about 20 years ago
Updated by Ingmar Schlecht about 20 years ago
This has been solved by Kasper now.
The problem was that Kasper already uses PHP5 and thus he didn't notice that bug...
Now we at least know that Typo3 works with PHP5 ;-)
Actions