Bug #19721 ยป 9979.diff
t3lib/class.t3lib_page.php | ||
---|---|---|
function enableFields($table,$show_hidden=-1,$ignore_array=array(),$noVersionPreview=FALSE) {
|
||
global $TYPO3_CONF_VARS;
|
||
if ($show_hidden==-1 && is_object($GLOBALS['TSFE'])) { // If show_hidden was not set from outside and if TSFE is an object, set it based on showHiddenPage and showHiddenRecords from TSFE
|
||
if ($show_hidden===-1 && is_object($GLOBALS['TSFE'])) { // If show_hidden was not set from outside and if TSFE is an object, set it based on showHiddenPage and showHiddenRecords from TSFE
|
||
$show_hidden = $table=='pages' ? $GLOBALS['TSFE']->showHiddenPage : $GLOBALS['TSFE']->showHiddenRecords;
|
||
}
|
||
if ($show_hidden==-1) $show_hidden=0; // If show_hidden was not changed during the previous evaluation, do it here.
|
||
if ($show_hidden===-1) $show_hidden=0; // If show_hidden was not changed during the previous evaluation, do it here.
|
||
$ctrl = $GLOBALS['TCA'][$table]['ctrl'];
|
||
$query='';
|