Sorry I had a typo on the add_phrase_type line near the end
PHP Code:
add_phrase_type($_REQUEST['name'], $_REQUEST['title');
should be
PHP Code:
add_phrase_type($_REQUEST['name'], $_REQUEST['title']);
But that wasn't the cause of your error message, you can't run it from the ACP. If you want security (beside just deleting it after) you can add
PHP Code:
if (!is_member_of($bbuserinfo, 6))
{
print_no_permission();
}
after
PHP Code:
require ("./global.php");