summaryrefslogtreecommitdiff
path: root/index.php
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2003-03-04 06:19:38 +0000
committerDries Buytaert <dries@buytaert.net>2003-03-04 06:19:38 +0000
commit40abf5061f100a3aa84d007d78c5f5423ea26ed7 (patch)
tree0712bfcc6aae0decc590b71712a616452b824b7b /index.php
parentf4cdeb1f5a78633b2ed7d42a5dba411fabea1b94 (diff)
downloadbrdo-40abf5061f100a3aa84d007d78c5f5423ea26ed7.tar.gz
brdo-40abf5061f100a3aa84d007d78c5f5423ea26ed7.tar.bz2
- Fixed "undefined index/variable" warning. Patch by Ax.
Diffstat (limited to 'index.php')
-rw-r--r--index.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/index.php b/index.php
index 42bd3dc66..795c73eed 100644
--- a/index.php
+++ b/index.php
@@ -3,7 +3,7 @@
include_once "includes/common.inc";
-if ($q) {
+if (isset($q)) {
$mod = arg(0);
}