MyBB Community Forums

Full Version: Quick edit adds the post content to footer
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Goto a post, click edit and Quick edit.... now the post content which is being edited is added below the footer.....

[Image: image.png]
I can confirm this.

fix for this...

in root/jscripts/thread.js

find:

$('#pid_' + pid).clone().attr('id','pid_' + pid + '_temp').css('display','none!important').appendTo("body");

replace:

$('#pid_' + pid).clone().attr('id','pid_' + pid + '_temp').hide().appendTo("body");

Ps. of course you need clear cache of browser.
Hi,

Thank you for your report. We have pushed this issue to our Github repository for further analysis where you can track our commits and progress with fixing this bug. Discussions regarding this bug may also take place there too.

Follow this link to visit the issue on Github: https://github.com/mybb/mybb/issues/866

Thanks for contributing to MyBB!

Regards,
The MyBB Group