Bug #19796 ยป 10102.diff
typo3/sysext/cms/tslib/class.tslib_pibase.php (working copy) | ||
---|---|---|
* @return string HTML content wrapped, ready to return to the parent object.
|
||
*/
|
||
function pi_wrapInBaseClass($str) {
|
||
$content = '<div class="'.str_replace('_','-',$this->prefixId).'">
|
||
'.$str.'
|
||
</div>
|
||
';
|
||
$content = $str ? '<div class="' . str_replace('_', '-', $this->prefixId) . '">
|
||
' . $str . '
|
||
</div>
|
||
' : '';
|
||
if(!$GLOBALS['TSFE']->config['config']['disablePrefixComment']) {
|
||
$content = '
|