MyBB Community Forums

Full Version: Double post when editing
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello!

I need help fixing this. When I edit a post in quick reply it doubles the post and when I refresh it is again normal (it is again 1).

Thanks in advance!

Regards,
WbDev
URL and test account?
Make sure your postbit_edit template is default ?
(2011-04-07, 09:44 AM)Yaldaram Wrote: [ -> ]Make sure your postbit_edit template is default ?

It is the default..
(2011-04-07, 08:18 AM)AJS Wrote: [ -> ]URL and test account?

http://wb-dev.net
Username: Test
Password: test123
Its your theme.

In postbit you probably have something like this:

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

It should be

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

Thank you - G33K -!