summaryrefslogtreecommitdiff
path: root/includes/bootstrap.inc
diff options
context:
space:
mode:
Diffstat (limited to 'includes/bootstrap.inc')
-rw-r--r--includes/bootstrap.inc4
1 files changed, 2 insertions, 2 deletions
diff --git a/includes/bootstrap.inc b/includes/bootstrap.inc
index a22e629ea..e35189152 100644
--- a/includes/bootstrap.inc
+++ b/includes/bootstrap.inc
@@ -193,8 +193,8 @@ function referer_uri() {
function arg($index) {
static $arguments, $q;
- if (empty($arguments) || $q != $_GET["q"]) {
- $arguments = explode("/", $_GET["q"]);
+ if (empty($arguments) || $q != $_GET['q']) {
+ $arguments = explode('/', $_GET['q']);
}
return $arguments[$index];