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:
parent
71ed8bf5f4
commit
9c1e7cccd0
|
@ -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);
|
||||
|
||||
|
|
Loading…
Reference in New Issue