To only allow administrators to add quotes, in quotes.php, find
PHP Code:
require_once('./global.php');
below that, add
PHP Code:
if ($_REQUEST['do'] == 'add' OR $_REQUEST['do'] == 'addquote' OR $_REQUEST['do'] == 'editquote' OR $_REQUEST['do'] == 'edit' OR $_REQUEST['do'] == 'submitpost' OR $_REQUEST['do'] == 'submit') {
if (!$vbulletin->userinfo['permissions']['adminpermissions']) {
print_no_permission();
exit;
}
}
I'm not sure about your other error, could you attach a saved html page where the quotes should be showing up in the header?