aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--inc/functions.inc.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/functions.inc.php b/inc/functions.inc.php
index 55807d4..77cbe4b 100644
--- a/inc/functions.inc.php
+++ b/inc/functions.inc.php
@@ -12,7 +12,7 @@ function GET($index = NULL, $value = NULL) {
12 return $arr; 12 return $arr;
13 } 13 }
14 14
15 if (!isset($_GET[$index])) 15 if (!isset($_GET[$index]) or strlen($_GET[$index]) == 0)
16 return NULL; 16 return NULL;
17 17
18 if ($value === NULL) 18 if ($value === NULL)