edeab220,
I don't have firefox at home, but I do at work. I'll check it out tomorrow.
PhoenixBB,
I think most people don't allow guests to post so thats probably why nobody has noticed.. Its really easy to fix though. You'll just need to disable quickedit completely for guests. You can do it like this:
In your postbit templates find this:
Code:
<if condition="THIS_SCRIPT=='showthread'">
$quickedit
</if>
And replace it with this:
Code:
<if condition="THIS_SCRIPT=='showthread' and $bbuserinfo[userid]>0">
$quickedit
</if>
Also, if you'd rather have the text "quick edit" instead of the icon, you should be able to do something like this in the showthread_quickedit template:
find:
Code:
<img src="$stylevar[imgdir_button]/quickedit_icon.gif" alt="Quick Edit" border="0" />
replace it with:
Code:
<a href="#top">Quick Edit</a>