REVERT: variable name change
[phorkie.git] / www / index.php
index d33604d2643846662f8ef2696c7be74d05874df4..7ff1814767cb6a619d3ad939d52714c4b19dac42 100644 (file)
@@ -1,24 +1,13 @@
 <?php
-namespace Phorkie;
 /**
- * Show paste creation form
- *
- * Elements:
- * - description
- * - file name (default: default.php)
- * - content
- *
- * Creates and redirects to display page
+ * Jump to the index as per the configuration
  */
+namespace phorkie;
+$secureAtLevel = false;
 require_once 'www-header.php';
 
-$repopo = new Repository_Post();
-if ($repopo->process($_POST)) {
-    redirect($repopo->repo->getLink('display'));
-}
-
-$phork = array(
-    '1' => new File(null, null)
+header(
+    'Location: '
+    . Tools::fullUrl('/' . $GLOBALS['phorkie']['cfg']['index'])
 );
-render('index', array('files' => $phork, 'description' => ''));
-?>
\ No newline at end of file
+?>