PDA

View Full Version : sticky


S0uL
05-08-2002, 07:13 PM
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']) {

S0uL
05-09-2002, 10:00 PM
thank you firefly!!