aboutsummaryrefslogtreecommitdiffstats
path: root/functions/userauth_functions.php
diff options
context:
space:
mode:
authorChad Little <clittle@users.sourceforge.net>2004-09-02 18:43:32 +0000
committerChad Little <clittle@users.sourceforge.net>2004-09-02 18:43:32 +0000
commit88c00c20e642043675459659e7d3266fbc6fb1ec (patch)
tree4eeedcb25ca1fc88dd5889a6d47d88872820fd58 /functions/userauth_functions.php
parentd06e6031b26322c5a5bca8cdfdbad196e5ebf002 (diff)
downloadphpicalendar-88c00c20e642043675459659e7d3266fbc6fb1ec.tar.gz
phpicalendar-88c00c20e642043675459659e7d3266fbc6fb1ec.tar.bz2
phpicalendar-88c00c20e642043675459659e7d3266fbc6fb1ec.zip
Updated to $_GET
Diffstat (limited to 'functions/userauth_functions.php')
-rw-r--r--functions/userauth_functions.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/functions/userauth_functions.php b/functions/userauth_functions.php
index ea4ea17..017841e 100644
--- a/functions/userauth_functions.php
+++ b/functions/userauth_functions.php
@@ -43,7 +43,7 @@ function logout_querys() {
// if no valid login is found. Returns a boolean invalid_login to
// indicate that the login is invalid.
function user_login() {
- global $_COOKIE, $HTTP_GET_VARS, $_POST, $_SERVER;
+ global $_COOKIE, $_GET, $_POST, $_SERVER;
global $login_cookies, $cookie_uri, $locked_map;
// Initialize return values.
@@ -83,11 +83,11 @@ function user_login() {
}
// Look for a new username and password.
- if (isset($HTTP_GET_VARS['username']) &&
- isset($HTTP_GET_VARS['password']))
+ if (isset($_GET['username']) &&
+ isset($_GET['password']))
{
- $username = $HTTP_GET_VARS['username'];
- $password = $HTTP_GET_VARS['password'];
+ $username = $_GET['username'];
+ $password = $_GET['password'];
} else if (isset($_POST['username']) &&
isset($_POST['password']))
{

© 2014-2024 Faster IT GmbH | imprint | privacy policy