Bug #77633
closedPHP Crash in AbstractXmlParser
0%
Description
I have a website with some different FSC-layouts on root level.
In some cases I get PHP-errors in typo3\sysext\core\Classes\Localization\Parser\AbstractXmlParser, line 89.
Reasons for these are:
- $charset === NULL
and
- $GLOBALS['TSFE'] is an object, but $GLOBALS['TSFE']->csConvObj is NULL.
Two solutions work for me:
changing line 88
from: if ($charset !== '') {
into: if ($charset != '') {
or
changing line 83
from: } elseif (is_object($GLOBALS['TSFE'])) {
into: } elseif (is_object($GLOBALS['TSFE']) && is_object($GLOBALS['TSFE'])->csConvObj) {
TYPO3 Version 7.6.10
Updated by Christian Kuhn about 8 years ago
Maybe an ajax / eid call of an extension that does not fully initialize TSFE? Do you have a full backtrace?
Updated by Wouter Wolters about 8 years ago
- Status changed from New to Needs Feedback
Updated by Riccardo De Contardi almost 8 years ago
- Status changed from Needs Feedback to Closed
No feedback within 90 days > closing this issue
If you think that this is the wrong decision or experience the issue again, then please reopen it or open a new issue with a reference to this one.
Thank you.