Thanks guys.
Quote:
Today at 06:48 PM KISS said this in Post #9
Anyway this could be setup to allow Mods and admins to quick Edit others posts?
|
Yes, if you want mods and admins to see the QuickEdit option in all posts, in admin/functions.php just use this instead of the code in the instructions:
Code:
if (($bbuserinfo[usergroupid] ==5) || ($bbuserinfo[usergroupid] ==6) || ($bbuserinfo[usergroupid] ==7) or ($post[username] == $bbuserinfo[username])) {
$edittext = htmlspecialchars($post[pagetext]);
eval("\$quickedit = \"".gettemplate('showthread_quickedit')."\";");
} else {
$edittext="";
$quickedit="";
}