aboutsummaryrefslogtreecommitdiffstats
path: root/search.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 /search.php
parentd06e6031b26322c5a5bca8cdfdbad196e5ebf002 (diff)
downloadphpicalendar-88c00c20e642043675459659e7d3266fbc6fb1ec.tar.gz
phpicalendar-88c00c20e642043675459659e7d3266fbc6fb1ec.tar.bz2
phpicalendar-88c00c20e642043675459659e7d3266fbc6fb1ec.zip
Updated to $_GET
Diffstat (limited to 'search.php')
-rw-r--r--search.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/search.php b/search.php
index 4ddcefe..885f482 100644
--- a/search.php
+++ b/search.php
@@ -15,8 +15,8 @@ if (isset($HTTP_SERVER_VARS['HTTP_REFERER']) && $HTTP_SERVER_VARS['HTTP_REFERER'
}
$search_valid = false;
-if (isset($HTTP_GET_VARS['query']) && $HTTP_GET_VARS['query'] != '') {
- $query = $HTTP_GET_VARS['query'];
+if (isset($_GET['query']) && $_GET['query'] != '') {
+ $query = $_GET['query'];
$search_valid = true;
}

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