The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
|||
|
|||
![]()
Hello!
On our forum image-attachment (when quoted) or used in another posts instead of showing as image showed as link "Attachment 422". You can see: Сообщение от Yana Посмотреть сообщение Я вот на какой агрегат наткнулась в Sur La Table Вложение 422 <<<--- Wanted Image и такие пельменницы)) Вложение 423 <<<--- Wanted Image Please give me advice how can I show attachment as image in any posts ? AFAIK it's needed to customize source code. Thank you for advance |
#2
|
|||
|
|||
![]()
Corrected original post - not only quoted attachment.
I'm talking about using attachments in any posts. |
#3
|
|||
|
|||
![]()
This hack will show linked attachments as inline images.
You will need to edit the /includes/class_bbcode.php file. Find this comment: "Display the attachment with no link to bigger image" change the variable just below the comment: $attachment['filename'] to $attachmentid Find this comment: Belongs to another post so we know nothing about it ... comment out the two lines of code: Code:
$addtarget = (empty($this->attachments["$attachmentid"]) OR $attachment['newwindow']) ? 'target="_blank"' : ''; Code:
$replace[] = "<a href=\"{$this->registry->options['bburl']}/attachment.php?{$this->registry->session->vars['sessionurl']}attachmentid=\\1" . (!empty($attachment['dateline']) ? "&d=$attachment[dateline]" : "") . "\" $addtarget>$vbphrase[attachment] \\1</a>"; Then add this block of code just bellow the last comment out line: Code:
$replace[] = "<img src=\"{$this->registry->options['bburl']}/attachment.php?{$this->registry->session->vars['sessionurl']}attachmentid=\\1&d=$attachment[dateline]\" border=\"0\" alt=\"" . construct_phrase($vbphrase['image_x_y_z'], $attachmentid, $attachment['counter'], $attachment['filesize']) . "\" " . (!empty($align) ? " style=\"float: $align; margin: 2px\"" : 'style="margin: 2px"') . " />"; |
#4
|
|||
|
|||
![]()
Andy, thank you very much.
It works! |
![]() |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|