
08-19-2008, 06:58 PM
|
|
|
Join Date: Jul 2007
Location: Berlin, Germany
Posts: 12
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by mrpaint
Just download the new AME1.2.0 in the first post and when rebuilding post I got a Fatal Error at ame_bbcode.php (line 192). I found out the problem is member use "$" in a CODE tag so I think you shoud replace
PHP Code:
$subhandlers = array(
'ame_substitute(1, "\1", "\2", $subbed)',
'ame_substitute(2, "\1", "\2", $subbed)',
'ame_substitute(3, "\1", "\2", $subbed)',
'ame_substitute(4, "\1", "\2", $subbed)',
);
With....
PHP Code:
$subhandlers = array(
'ame_substitute(1, \'\1\', \'\2\', $subbed)',
'ame_substitute(2, \'\1\', \'\2\', $subbed)',
'ame_substitute(3, \'\1\', \'\2\', $subbed)',
'ame_substitute(4, \'\1\', \'\2\', $subbed)',
);
Work like a charm now 
|
Thanks! Had the same problem with it.
back to topic: nice addon, will use it with anotherone like that
|