Index: t3lib/class.t3lib_tsparser.php =================================================================== --- t3lib/class.t3lib_tsparser.php (revision 9775) +++ t3lib/class.t3lib_tsparser.php (revision ) @@ -122,6 +122,9 @@ * @return void */ function parse($string, $matchObj = '') { + // remove comments /* ... */ + $string = preg_replace('/\/\*.*?\*\//s', '', $string); + $this->raw = explode(LF, $string); $this->rawP = 0; $pre = '[GLOBAL]';