
05-22-2011, 03:29 PM
|
 |
|
|
Join Date: Sep 2009
Posts: 62
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
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.
|
That worked. Thanks! :up:
|