make use of $_POST and $_GET instead of $HTTP_POST_VARS and $HTTP_GET_VARS which are deprecated

This commit is contained in:
Jonathan Ernst
2004-12-19 17:43:46 +00:00
committed by WineHQ
parent 31459341ef
commit 8968a68033
11 changed files with 18 additions and 18 deletions

View File

@@ -24,9 +24,9 @@ $t = new TableVE("create");
if(!$appId)
$appId = 0;
if($HTTP_POST_VARS)
if($_POST)
{
$t->update($HTTP_POST_VARS);
$t->update($_POST);
}
else
{