View Full Version : sticky
how can i make it so only admins can use the sticky option
Admin
05-09-2002, 04:55 AM
In postings.php replace this:
if ($action=="stick") {
$threadid=verifyid("thread",$threadid);
$threadinfo=getthreadinfo($threadid);
if (!$threadinfo[visible]) {
$idname="thread";
eval("standarderror(\"".gettemplate("error_invalidid")."\");");
}
if (!ismoderator($threadinfo[forumid],"canmanagethreads")) {
With this:
if ($action=="stick") {
$threadid=verifyid("thread",$threadid);
$threadinfo=getthreadinfo($threadid);
if (!$threadinfo[visible]) {
$idname="thread";
eval("standarderror(\"".gettemplate("error_invalidid")."\");");
}
if (!$permissions['cancontrolpanel']) {
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.