Recently I discovered that moderators can make sticky posts in their moderated forums. I had thought it was admin only due to a post over at infopop, so I had wondered how a mod had done it on my board. I didn't like this, so I have tracked down the code to change this. I think it is just this one line, and it is real simple to make sticky posts admin only if you so choose.<br /><br />In the editpost.php file, find this:<br /><br /> elseif ( ( ( ($user['U_Status'] == "Moderator") && $check) || ($user['U_Status'] == "Administrator") ) && ($Number == $Main) && (!$Sticky) ) {<br /><br />and REMOVE this part:<br /><br />( ($user['U_Status'] == "Moderator") && $check) ||<br /><br />so it looks like this:<br /><br /> elseif ( ( ($user['U_Status'] == "Administrator") ) && ($Number == $Main) && (!$Sticky) ) {<br /><br /><br />Thats it!