Attached images don't show up for guests. It just shows a link.
How can you fix this?
I believe it has to do with: /includes/class_bbcode.php
PHP Code:
else
{ // Belongs to another post so we know nothing about it ... or we are not displying images so always show a link
$addtarget = ($attachment['newwindow']) ? 'target="_blank"' : '';
$replace[] = ($fullsize ? '<div class="size_fullsize">' : '') .
"<a href=\"{$this->registry->options['bburl']}/attachment.php?{$this->registry->session->vars['sessionurl']}attachmentid=\\1" . (!empty($attachment['dateline']) ? "&d=$attachment[dateline]" : "") . "\" $addtarget title=\""
. construct_phrase($vbphrase['image_x_y_z'], $attachment['filename'], $attachment['counter'], $attachment['filesize'])
. "\">$vbphrase[attachment] \\1</a>" . ($fullsize ? '</div>' : '');
}