Quote:
Originally Posted by Dirt Bike Addict
Use this for vB 4.0.5
1) Edit ./includes/class_bbcode.php
2) Search:
PHP Code:
$templater = vB_Template::create($this->printable ? $this->quote_printable_template : $this->quote_template);
3) Add this above it:
PHP Code:
if ($this->contains_bbcode_img_tags($message)) { $message = preg_replace('#\[img\]\s*(https?://([^<>*"]+|[a-z0-9/\\._\- !]+))\[/img\]#iUe', "\$this->handle_bbcode_url(str_replace('\\\"', '\"', '\\1'), '')", $message); }
Thanks to vB Style for the vB 4.0.3 code, I had to modify it for vB 4.0.5 though.
|
Tried this on my 4.1.5 board, but it didn't work. What do I have to change to make work?
Edit, never mind, got it working by replacing the contents of bbcode_quote template with this:
Code:
<div class="bbcode_container">
<div class="bbcode_quote">
<div class="quote_container">
<div class="bbcode_quote_container"></div>
<vb:if condition="$show['username']">
<div class="bbcode_postedby">
<img src="{vb:stylevar imgdir_misc}/quote_icon.png" alt="{vb:rawphrase quote}" /> {vb:rawphrase originally_posted_by_x, {vb:raw username}}
<vb:if condition="$postid"><a href="{vb:raw $vboptions.vbforum_url}{vb:if "$vboptions['vbforum_url']", '/', ''}showthread.php?{vb:raw session.sessionurl}p={vb:raw postid}#post{vb:raw postid}" rel="nofollow"><img class="inlineimg" src="{vb:stylevar imgdir_button}/viewpost-{vb:stylevar right}.png" alt="{vb:rawphrase view_post}" /></a></vb:if>
</div>
<div class="message">{vb:raw message}</div>
<vb:else />
{vb:raw message}
</vb:if>
</div>
</div>
</div>