make use of $_POST and $_GET instead of $HTTP_POST_VARS and $HTTP_GET_VARS which are deprecated
This commit is contained in:
@@ -21,9 +21,9 @@ apidb_header("Edit Vendor Information");
|
||||
$t = new TableVE("edit");
|
||||
|
||||
|
||||
if($HTTP_POST_VARS)
|
||||
if($_POST)
|
||||
{
|
||||
$t->update($HTTP_POST_VARS);
|
||||
$t->update($_POST);
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user