Single file editing
[phorkie.git] / www / edit.php
index f83dfb3d2d4ca9b221a395a324e8ca2ec24157be..e95ca3f5ed2dbf5441f79300dc5bfacdd8853308 100644 (file)
@@ -3,20 +3,28 @@ namespace phorkie;
 /**
  * Edit paste contents
  */
-$secureAtLevel = '1';
+$reqWritePermissions = true;
 require_once 'www-header.php';
+
 $repo = new Repository();
 $repo->loadFromRequest();
 
 $repopo = new Repository_Post($repo);
 if ($repopo->process($_POST, $_SESSION)) {
-    redirect($repo->getLink('display'));
+    redirect($repo->getLink('display', null, true));
+}
+
+$file = null;
+if (isset($_GET['file'])) {
+    $file = $repo->getFileByName($_GET['file']);
 }
 
 render(
     'edit',
     array(
         'repo' => $repo,
+        'singlefile' => $file,
+        'dh'   => new \Date_HumanDiff(),
         'htmlhelper' => new HtmlHelper(),
     )
 );