Get sub_domain_id and status from get instead of post in dom_substatus

The submission is done through links with get parameters (see dom_edit.php)
This commit is contained in:
Kienan Stewart 2018-06-12 21:11:14 -04:00
parent 71ed8bf5f4
commit 9c1e7cccd0
1 changed files with 2 additions and 2 deletions

View File

@ -26,8 +26,8 @@
require_once("../class/config.php");
$fields = array (
"sub_id" => array ("post", "integer", ""),
"status" => array ("post", "string", ""),
"sub_id" => array ("get", "integer", ""),
"status" => array ("get", "string", ""),
);
getFields($fields);