REVERT: variable name change
[phorkie.git] / www / index.php
index e69de29bb2d1d6434b8b29ae775ad8c2e48c5391..7ff1814767cb6a619d3ad939d52714c4b19dac42 100644 (file)
@@ -0,0 +1,13 @@
+<?php
+/**
+ * Jump to the index as per the configuration
+ */
+namespace phorkie;
+$secureAtLevel = false;
+require_once 'www-header.php';
+
+header(
+    'Location: '
+    . Tools::fullUrl('/' . $GLOBALS['phorkie']['cfg']['index'])
+);
+?>