aboutsummaryrefslogtreecommitdiff
path: root/ratatoeskr/main.php
diff options
context:
space:
mode:
authorKevin Chabowski <kevin@kch42.de>2013-10-03 22:30:58 +0200
committerKevin Chabowski <kevin@kch42.de>2013-10-03 22:30:58 +0200
commit78c95c09f05e4fa12b66bd27714ce4889a892c21 (patch)
tree7827469ff419391efec3271576395d567ec5bc4f /ratatoeskr/main.php
parentb302319e6c62f6b31d53197a08134c6c9bf8735b (diff)
downloadratatoeskr-cms-78c95c09f05e4fa12b66bd27714ce4889a892c21.tar.gz
ratatoeskr-cms-78c95c09f05e4fa12b66bd27714ce4889a892c21.tar.bz2
ratatoeskr-cms-78c95c09f05e4fa12b66bd27714ce4889a892c21.zip
Fixed referencing and constants.
* Creating a varaible reference at call time is not possbile any more. * When defining a constant, we pass the name as a string now.
Diffstat (limited to 'ratatoeskr/main.php')
-rw-r--r--ratatoeskr/main.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/ratatoeskr/main.php b/ratatoeskr/main.php
index f1a641f..4fd22de 100644
--- a/ratatoeskr/main.php
+++ b/ratatoeskr/main.php
@@ -94,7 +94,7 @@ function _ratatoeskr()
echo $ste->exectemplate("/systemtemplates/error.html");
}));
- $urlpath = explode("/", $_GET["action"]);
+ $urlpath = explode("/", @$_GET["action"]);
$rel_path_to_root = implode("/", array_merge(array("."), array_repeat("..", count($urlpath) - 1)));
$GLOBALS["rel_path_to_root"] = $rel_path_to_root;
$data = array("rel_path_to_root" => $rel_path_to_root);