MyBB Community Forums

Full Version: Turn off quick edit in posts
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Is there a way to turn off the quick edit in posts ?

I've set the time limit for editing a post and it works on full edit, but for some reason members are still able to edit their posts by using Quick Edit even after the edit time has passed.

Thank you.
Hmmm.... I think this can be reported as a bug...

anyway to answer your question, you can modify the postbit_edit template and replace the content with

<a href="editpost.php?pid={$post['pid']}" id="edit_post_{$post['pid']}" title="{$lang->postbit_edit}" class="postbit_edit"><span>{$lang->postbit_button_edit}</span></a>
(2015-01-31, 02:35 PM)mmadhankumar Wrote: [ -> ]Hmmm.... I think this can be reported as a bug...

anyway to answer your question, you can modify the postbit_edit template and replace the content with



<a href="editpost.php?pid={$post['pid']}" id="edit_post_{$post['pid']}" title="{$lang->postbit_edit}" class="postbit_edit"><span>{$lang->postbit_button_edit}</span></a>

That worked thank you, can I leave you to report it as a bug ?

Thank You.