Actions
Bug #63650
closedenableFields WHERE clause filter reference check (Contains Fix Patch)
Status:
Rejected
Priority:
Should have
Assignee:
-
Category:
Frontend
Target version:
-
Start date:
2014-12-08
Due date:
% Done:
0%
Estimated time:
TYPO3 Version:
6.2
PHP Version:
Tags:
Complexity:
no-brainer
Is Regression:
No
Sprint Focus:
Description
sysext/frontend/Classes/ContentObject/ContentObjectRenderer.php
Line 7276 should be wrapped in an if:
return $GLOBALS['TSFE']->sys_page->enableFields($table, $show_hidden, $ignore_array);
if(is_object($GLOBALS['TSFE']->sys_page)){ return $GLOBALS['TSFE']->sys_page->enableFields($table, $show_hidden, $ignore_array); }
otherwise throws Fatal Error with cal extension scheduler call because of NULL reference
Actions