Quote:
Originally Posted by hotwheels
I just installed this mod and i found an error on my site that i didn't know existed......I am not seeing any error's on my website, but when i use this mod, and open up the .xml, i see this error: ........as you can see, forums comes up 2 time's in the image link. How can i fix that? I am not even sure where to begin looking to repair that........
Thanks..........I did ask at vbulletin.com but no answer of any sort.......hotwheels
|
This hack has nothing to do with this problem...
Xmmmmm let it me guess, you have vBadvanced installed and your $stylevar['imgdir_misc'] is
/forums/images/misc
it's a "bug" at external.php
open external.php and find :
PHP Code:
$rssicon = preg_match('#^http(s)?://#', $stylevar['imgdir_misc']) ? $stylevar['imgdir_misc'] . '/rss.jpg' : $vbulletin->options['bburl'] . "/$stylevar[imgdir_misc]/rss.jpg";
replace it with:
PHP Code:
$rssicon = preg_match('#^http(s)?://#', $stylevar['imgdir_misc']) ? . '/rss.jpg' : $vbulletin->options['homeurl'] . "$stylevar[imgdir_misc]/rss.jpg";