get rid of openid config file
[phorkie.git] / www / index.php
index 898c443a72309ce53097286fc1a74f845855e280..18018313aa3ce76b2770bbbd575b5367ff28fa09 100644 (file)
@@ -1,31 +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;
+$pageRequiresLogin = 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)
-);
-render(
-    'index',
-    array(
-        'files' => $phork,
-        'description' => '',
-        'htmlhelper' => new HtmlHelper(),
-    )
+header(
+    'Location: '
+    . Tools::fullUrl('/' . $GLOBALS['phorkie']['cfg']['index'])
 );
 ?>