OK, I checked the admin_warn.php code again. It looks as if I have forgotten some code, which is now required by vB.
Try this and let me know if it works:
In admin_warn.php find:
Code:
// ###################### Delete Warn Type #######################
if($_GET['act']=="delete")
{
print_cp_header("Advanced Warning System Version {$AWS_VERSION}");
if(!$warn=$db->query_first("select * from ".TABLE_PREFIX."warning_types where tid='{$_GET['tid']}'"))
{
echo "Unable To Find Warning Type [ <a href='javascript:history.go(-1);'>Go Back</a> ]";
exit;
}
Replace that with:
Code:
// ###################### Delete Warn Type #######################
if($_GET['act']=="delete")
{
$vbulletin->input->clean_array_gpc('g', array(
'tid'=> TYPE_INT,
'warn_name'=> TYPE_STR,
'warn_desc'=> TYPE_STR,
'warn_points'=> TYPE_INT,
'warn_maturity'=> TYPE_INT,
'warn_permban'=> TYPE_STR,
'warn_type'=> TYPE_STR,
'warn_alert'=> TYPE_STR,
'warn_alertcomment'=> TYPE_STR,
));
print_cp_header("Advanced Warning System Version {$AWS_VERSION}");
if(!$warn=$db->query_first("select * from ".TABLE_PREFIX."warning_types where tid=tid='{$vbulletin->GPC['tid']}'"))
{
echo "Unable To Find Warning Type [ <a href='javascript:history.go(-1);'>Go Back</a> ]";
exit;
}
Let me know if this solves the issue of deleting a warning type.