summaryrefslogtreecommitdiff
path: root/includes/bootstrap.inc
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2005-05-21 11:33:03 +0000
committerDries Buytaert <dries@buytaert.net>2005-05-21 11:33:03 +0000
commitcdec2f7e3eb2f64c8d916b1d94f74462603eb884 (patch)
treef83dbaf38aff03af82a5e9c08692df8be98cba9a /includes/bootstrap.inc
parent62427644ebc07c2be56153ffc2db012ced6eef7c (diff)
downloadbrdo-cdec2f7e3eb2f64c8d916b1d94f74462603eb884.tar.gz
brdo-cdec2f7e3eb2f64c8d916b1d94f74462603eb884.tar.bz2
- Patch #16303 by Gerhard: fixed some warnings.
Diffstat (limited to 'includes/bootstrap.inc')
-rw-r--r--includes/bootstrap.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/includes/bootstrap.inc b/includes/bootstrap.inc
index 9e8b4d217..482c6fa6e 100644
--- a/includes/bootstrap.inc
+++ b/includes/bootstrap.inc
@@ -678,7 +678,7 @@ function arg($index) {
$arguments = explode('/', $_GET['q']);
}
- if ($arguments[$index] !== NULL) {
+ if (isset($arguments[$index])) {
return $arguments[$index];
}
}