BirdOPrey5 |
05-21-2011 01:06 AM |
Quote:
Originally Posted by boggseric
(Post 2198199)
I'm seeing some extra characters in the youtube titles, is anyone else seeing this?
YouTube - ‪Flower Warfare - Psychedelic Action Scene‬‏
|
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.
|