Quote:
Originally Posted by sketch42
IMHO there are waaaaaaaaay to many versions of this hack in this thread...lol... which is the most recommended, and can this be made to be used by specific usergroups only???
|
Use the one in the first post of this thread.
Its the most recent.
And yes, you can easily limit the hack to certain usergroups by using template conditionals around the $quickedit variable in the postbit template.
For example, lets say you want everyone except usergroup 8 to have access to this feature..
In the postbit template you would just replace this:
Code:
<if condition="THIS_SCRIPT=='showthread'">
$quickedit
</if>
With this:
Code:
<if condition="THIS_SCRIPT=='showthread' and $bbuserinfo[usergroupid]!=8">
$quickedit
</if>