From 88c00c20e642043675459659e7d3266fbc6fb1ec Mon Sep 17 00:00:00 2001 From: Chad Little Date: Thu, 2 Sep 2004 18:43:32 +0000 Subject: Updated to $_GET --- includes/login.php | 4 ++-- includes/todo.php | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'includes') diff --git a/includes/login.php b/includes/login.php index 38bbd5b..e7713c1 100644 --- a/includes/login.php +++ b/includes/login.php @@ -10,11 +10,11 @@ echo '
'; echo ''; - foreach (array_keys($HTTP_GET_VARS) as $key) { + foreach (array_keys($_GET) as $key) { if ($key == 'action' || $key == 'username' || $key == 'password') { continue; } - echo ''; + echo ''; } // If the attempted login was invalid, change the box title. diff --git a/includes/todo.php b/includes/todo.php index b8d5766..2a45d35 100644 --- a/includes/todo.php +++ b/includes/todo.php @@ -5,7 +5,7 @@ include_once(BASE.'functions/init.inc.php'); include_once(BASE.'functions/date_functions.php'); require_once(BASE.'functions/template.php'); -$vtodo_array = unserialize(base64_decode($HTTP_GET_VARS['vtodo_array'])); +$vtodo_array = unserialize(base64_decode($_GET['vtodo_array'])); // Set the variables from the array $vtodo_text = (isset($vtodo_array['vtodo_text'])) ? $vtodo_array['vtodo_text'] : (''); -- cgit v1.2.3