I have fixed this mod in VB 3.8.7
Open the postbit or postbit_legacy template depending on which one you use on your forum.
Carry out the following modifications to the template:
FIND:
Code:
<!-- controls -->
<if condition="$post['editlink']">
<a href="$post[editlink]" name="vB::QuickEdit::$post[postid]"><img src="$stylevar[imgdir_button]/edit.gif" alt="$vbphrase[edit_delete_message]" border="0" /></a>
</if>
REPLACE WITH:
Code:
<!-- controls -->
<if condition="$post['editlink']">
<if condition="$GLOBALS[vbulletin]->options['quickedit']">
<span id="$post[postid]"><a href="">
<img src="$stylevar[imgdir_button]/edit.gif" alt="$vbphrase[edit_delete_message]" border="0"></a> <script type="text/javascript"> vbmenu_register("$post[postid]", 1); </script></span>
<else />
<a href="$post[editlink]"><img src="$stylevar[imgdir_button]/edit.gif" alt="$vbphrase[edit_delete_message]" border="0" /></a>
</if>
</if>
GO TO BOTTOM OF TEMPLATE
ADD:
Code:
<if condition="$GLOBALS[vbulletin]->options['quickedit']">
<!-- editchooser -->
<div class="vbmenu_popup" id="$post[postid]_menu" style="display:none">
<table cellpadding="4" cellspacing="1" border="0">
<tr><td><a href="$post[editlink]" name="vB::QuickEdit::$post[postid]">Quick Edit</a></td></tr>
<tr><td><a href="editpost.php?p=$post[postid]">Full Edit</a></td></tr>
</table>
</div>
<!-- / editchooser -->
</if>
Enjoy it!