Index: template.php =================================================================== --- template.php (revision 6296) +++ template.php (working copy) @@ -1926,7 +1926,8 @@ } // 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); }