In reference to this thread: http://www.vbulletin.com/forum/showt...threadid=16821
The fix says to look for this in forumdisplay.php:
In my forumdisplay.php, it actually had this:
So I would assume that the fix, for me, at least, is not to replace it with this:
But rather to replace it with this:
The fix says to look for this in forumdisplay.php:
PHP Code:
$thread[icon]='<img src="images/icons/icon1.gif" border=\"0\" alt=\"\">';
PHP Code:
$thread[icon]='<img src="{imagesfolder}/icons/icon1.gif" border=\"0\" alt=\"\">';
PHP Code:
$thread[icon]='<img src="images/icons/icon1.gif" border="0" alt="">';
PHP Code:
$thread[icon]='<img src="{imagesfolder}/icons/icon1.gif" border="0" alt="">';
Comment