Task #32773
closedfe_adminLib.inc crashes on 5.3 because usage of preg_spliti()
100%
Description
I get the error
"_Fatal error: Call to undefined function preg_spliti() in /.../typo3/sysext/cms/tslib/media/scripts/fe_adminLib.inc on line 1494_"
I can't find any documentation of function preg_spliti. PHP version 5.3.8 is used on the server. You are sure this function exists?
Perhaps better use this solution:
- $parts = preg_spliti('<title>|</title>', $content, 3); + $parts = preg_split('/<title>|<\/title>/i', $content, 3);
(issue imported from #M12889)
Updated by Markus Klein almost 13 years ago
Please discard the last line of the description. This issue has not been imported!
Patch is on the way.
Updated by Gerrit Code Review almost 13 years ago
- Status changed from New to Under Review
Patch set 1 for branch master has been pushed to the review server.
It is available at http://review.typo3.org/7487
Updated by Gerrit Code Review almost 13 years ago
Patch set 2 for branch master has been pushed to the review server.
It is available at http://review.typo3.org/7487
Updated by Sven Burkert almost 13 years ago
- Status changed from Under Review to Resolved
- % Done changed from 0 to 100
Applied in changeset ade26375c9f670c42bd55a71c371948145b60b97.
Updated by Gerrit Code Review over 12 years ago
- Status changed from Resolved to Under Review
Patch set 1 for branch TYPO3_4-5 has been pushed to the review server.
It is available at http://review.typo3.org/12083
Updated by Gerrit Code Review over 12 years ago
Patch set 1 for branch TYPO3_4-6 has been pushed to the review server.
It is available at http://review.typo3.org/12084
Updated by Sven Burkert over 12 years ago
- Status changed from Under Review to Resolved
Applied in changeset c75df95dab1cb340bc015bf3ec868d5b9829b26f.
Updated by Gerrit Code Review over 12 years ago
- Status changed from Resolved to Under Review
Patch set 1 for branch TYPO3_4-6 has been pushed to the review server.
It is available at http://review.typo3.org/13271
Updated by Nicole Cordes over 11 years ago
- Status changed from Under Review to Resolved
The latest patch doesn't exits anymore.