MyBB Community Forums

Full Version: Quote not working after upgrade to 1.6.10?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
Hello,

After the MyBB upgrade from 1.6.9 I've notice that my quote buttons no longer work. I hit the quote button on a post and it comes up blank in the reply editor.

Here is my button template code
<a href="newreply.php?tid={$tid}&amp;pid={$post['pid']}" class="tbut">Quote</a>
Change that code to:

<a href="newreply.php?tid={$tid}&amp;replyto={$post['pid']}" class="tbut">Quote</a>
That fixed it, thank you.
sorry i d like to know where the said line needing alteration is located.
which of the templates includes it?

thanks in advance.
^ admin panel >> templates >> your forum's active theme templates >> Post Bit Templates >> postbit_quote template
{ hmm., something wrong with my browser }
(2013-04-27, 03:23 PM)Euan T Wrote: [ -> ]Change that code to:

<a href="newreply.php?tid={$tid}&amp;replyto={$post['pid']}" class="tbut">Quote</a>

Worked for me as well. Thanks
Thanx for this , helped me too :p ;D !
(2013-04-27, 03:23 PM)Euan T Wrote: [ -> ]Change that code to:

<a href="newreply.php?tid={$tid}&amp;replyto={$post['pid']}" class="tbut">Quote</a>


(2013-04-28, 09:09 AM).m. Wrote: [ -> ]^ admin panel >> templates >> your forum's active theme templates >> Post Bit Templates >> postbit_quote template

Thanks, this code worked but the 'Quote' text doesn't have a border around it anymore
[Image: 72515_quote.png]

This was my previous code btw that wasn't working
<a href="newreply.php?tid={$tid}&amp;pid={$post['pid']}" class="postbit">quote</a>



Also another thing, the +quote isn't working aswell, do you know how I can fix it?
Change postbit_quote to:
<a href="newreply.php?tid={$tid}&amp;replyto={$post['pid']}" class="postbit">quote</a>
You changed the class which is responsible for styles to a non-existing .tbut from this topic (the author has it but others most probably don't).

As for multiquote, what isn't working? Give some details and postbit_multiquote content or page url and test account.
Pages: 1 2