diff --git a/www/disputes.php b/www/disputes.php index 71c4ff4..0f5c7dd 100644 --- a/www/disputes.php +++ b/www/disputes.php @@ -88,8 +88,8 @@ if($type == "email") { - $emailid = intval($emailid); - $hash = trim(mysql_escape_string(stripslashes($hash))); + $emailid = intval($_REQUEST['emailid']); + $hash = trim(mysql_escape_string(stripslashes($_REQUEST['hash']))); if($emailid <= 0 || $hash == "") { showheader(_("Email Dispute")); @@ -179,8 +179,8 @@ if($type == "domain") { - $domainid = intval($domainid); - $hash = trim(mysql_escape_string(stripslashes($hash))); + $domainid = intval($_REQUEST['domainid']); + $hash = trim(mysql_escape_string(stripslashes($_REQUEST['hash']))); if($domainid <= 0 || $hash == "") { showheader(_("Domain Dispute"));