MyBB Community Forums

Full Version: Quick reply bug
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
(2012-03-05, 05:40 PM)pixelmonkey Wrote: [ -> ]maybe its that by default, quick reply is coded to add a specific layout for post and if the layout is not according to it, it fails. (just some assumption)
can you list me the files and anything related with the quick reply?
i'm also on working to see what part of my template is culprit..
Guys i figured it out...and it was quite easy.
My template didn't have id="" in the main post table.
to anyone else having the same problem, add this to your main table if you haven't. Though not everyone rewrites templates these days Toungue
id="post_{$post['pid']}"

what template is the main post table and where is that code added?

a few users on my forum are reporting that the spinning wheel for the quick reply keeps spinning even after their reply is shown.
It's in the postbit and postbit_classic templates.
it looks like my postbit template has it several times:

<a name="pid{$post['pid']}" id="pid{$post['pid']}"></a>

and...

<div class="post_body" id="pid_{$post['pid']}">
					{$post['message']}
				</div>

as does my posbit_classic template.
Then the postbit template is fine and that's not the issue. Maybe you could make a separate thread for your issue in particular?
I actually do have one:
http://community.mybb.com/thread-115585.html

I'll bump it.
I must have missed it somehow, sorry!
Pages: 1 2