To allow your administrator group to bypass being moderated (assuming that you have quotes moderation turned on in your ACP) make the following changes to quotes.php......
Find....
Code:
if (empty($author) OR empty($quote))
{
eval (print_standard_error('error_requiredfields'));
}
And
below it add:
Code:
if (!$bbuserinfo['permissions']['adminpermissions'])
{ // Use the moderation option set in the ACP
$moderate_quote = $vboptions[moderatequotes];
}
else
{ // Do not moderate administrator quotes
$moderate_quote = 1;
}
Right below that you should see....
Code:
$DB_site->query("
INSERT INTO " . TABLE_PREFIX . "quotes (quote, author, userid, approved) VALUES ('" . addslashes($quote) . "', '" . addslashes($author) . "', $bbuserinfo[userid], $vboptions[moderatequotes])
");
Change the word "
$vboptions[moderatequotes]" to "
$moderate_quote" and try it out.