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