Bug #19896 » 10241.diff
t3lib/class.t3lib_querygenerator.php (working copy) | ||
---|---|---|
$qString .= ' AND pid IN ('.$webMountPageTree.')';
|
||
}
|
||
}
|
||
$fieldlist = $this->extFieldLists['queryFields'].',pid,deleted';
|
||
$fieldlist = $this->extFieldLists['queryFields'] .
|
||
',pid' .
|
||
($GLOBALS['TCA'][$this->table]['ctrl']['delete'] ? ',' . $GLOBALS['TCA'][$this->table]['ctrl']['delete'] : '');
|
||
if (!$GLOBALS['SOBE']->MOD_SETTINGS['show_deleted']) {
|
||
$qString .= t3lib_BEfunc::deleteClause($this->table);
|
||
}
|
- « Previous
- 1
- 2
- Next »