I have another problem and need help .
My code:
Code:
if ($_REQUEST['do'] == 'remove' AND in_array($vbulletin->GPC['userid'], array(Your ID)) ){
print_cp_header('Access Denied');
}
else{
print_cp_header($vbphrase['user_manager']);
}
Code:
if ($_REQUEST['do'] == 'remove')
{
if (in_array($vbulletin->GPC['userid'], array(Your ID)) )
{
print_table_start();
print_table_header('Access Denied');
echo "<td class=\"alt1\" nowrap=\"nowrap\" align=\"center\">Good try ;)</td>";
print_table_footer(2, '', '', 0);
}
else{
This code works on my vB4.2.5 - 5 PHP
But , we upload our forum on vB4.2.5 - 7.3.31 PHP .
Since then ( upload on new PHP ) , my code didn't work anymore . We are just only changed the PHP .
Does anyone know how to do that nobody can delete , ban or edit a specifici User ID in this file ?
Some solution ?