
05-22-2011, 04:34 PM
|
 |
|
|
Join Date: Sep 2009
Posts: 62
Благодарил(а): 0 раз(а)
Поблагодарили:
0 раз(а) в 0 сообщениях
|
|
Quote:
Originally Posted by jca2112
It looks like this same character entity problem in YouTube titles has returned -- I assume it was a change on YouTube's end because it went away on it's own last time. Does anyone know anything about this?
|
This is from the definitions thread but it should be in here as it requires a change to the mod.
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.
|
|