Bug #21375 ยป 12398.patch
template.php (working copy) | ||
---|---|---|
}
|
||
// replacing all markers with the finished markers and return the HTML content
|
||
return t3lib_parsehtml::substituteMarkerArray($moduleBody, $markerArray, '###|###');
|
||
$content = t3lib_parsehtml::substituteMarkerArray($moduleBody, $markerArray, '###|###');
|
||
return preg_replace('/' . preg_quote('###') . '([A-Z0-9_-|]*)' . preg_quote('###') . '/is', '', $content);
|
||
}
|
||