Hi holger,
The code difference between the old version and the new one (besides new tags addition) is only at the line 230
| Code: |
$row->text = preg_replace("'{".preg_quote($key)."}".preg_quote($match)."{/".preg_quote($key)."}'s", $startcode.$code.$endcode , $row->text );
|
in the new version it has been changed into
| Code: |
$a = preg_quote($match);
$a = str_replace("'", "\'", $a);
$row->text = preg_replace("'{".preg_quote($key)."}".$a."{/".preg_quote($key)."}'s", $startcode.$code.$endcode , $row->text );
|
Anyway, glad to know the problem has been solved
