PDA


View Full Version : News attachment thumbnail problem


Drakah
07-26-2005, 06:16 AM
Everything looks great :) Though I just have this one strange problem... the thumbnail is not showing up on the main page, its pointing to http://www.shakahr.com/attachment.php? when it should be http://www.shakahr.com/forums/attachment.php?

All the urls are right... graphics for everything else shows fine... just this one is making me nuts, any ideas? :)

Oh, and the tempates are not modded (yet).

Brian
07-26-2005, 12:16 PM
If you'll look in your modules/news.php file for this code:
$templatecache['postbit_attachmentthumbnail'] = str_replace('"attachment.php', '"' . $vbulletin->options['bburl'] . '/attachment.php', $templatecache['postbit_attachmentthumbnail']);

And replace it with this:
$vbulletin->templatecache['postbit_attachmentthumbnail'] = str_replace('"attachment.php', '"' . $vbulletin->options['bburl'] . '/attachment.php', $vbulletin->templatecache['postbit_attachmentthumbnail']);

Then that should take care of the problem.

Drakah
07-26-2005, 04:17 PM
YAY! Thanks Brian :) :)