Quote:
Originally Posted by BirdOPrey5
I fixed it like this... I had to edit the AME mod... Backup your original file if you try this.
In the includes directory find the file ame_bbcode.php
At line #589 find this code:
PHP Code:
$title = trim(str_replace(array("\t","\n"), "", $match[1]));
Replace it with:
PHP Code:
$title = trim(str_replace(array("\t","\n", "‏", "‪", "‬"), "", $match[1]));
All I can promise is it's working for me. It won't fix links you've already made but should keep new ones clean.
|
I had one small problem with this, and it's probably something I won't run into too often. Single quotes in the title caused a parse error with AME. I presume it's from this edt, but I haven't had a chance to verify that yet. When I get into this more, I'll see if I can find a fix.