edit: distinct admin template for missing pages
[minimedit.git] / edit.php
index afa6c6d4868c1948ade99c31579726d52ea9a358..01d83dfa64f602dcf71ca38f2049f7f188432058 100755 (executable)
--- a/edit.php
+++ b/edit.php
@@ -5,12 +5,15 @@ function abort($status, $body) {
        exit;
 }
 
+if (!$User['admin'])
+       abort('401 unauthorised', "geen beheersrechten");
+
 if (!$_POST)
        abort('405 post error', "niets te doen");
 if (!isset($_SERVER['PATH_INFO']) or strlen($_SERVER['PATH_INFO']) <= 1)
        abort('409 input error', "geen bestand aangeleverd");
 
-$filename = preg_replace('/(?:\.html)?$/', '.html', ltrim($_SERVER['PATH_INFO'], '/'), 1);
+$filename = ltrim($Args, '/').'.html';
 if (file_exists($filename) and !is_writable($filename))
        abort('403 input error', "ongeldige bestandsnaam: $filename");
 if (is_executable($filename))
@@ -29,10 +32,7 @@ if (!strlen($upload)) {
        exit;
 }
 
-$prepend = "<?php include 'head.inc.php'; ?>\n\n";
-$append  = "\n";
-
-if (!file_put_contents($filename, $prepend . $upload . $append))
+if (!file_put_contents($filename, $upload))
        abort('500 save error', "fout bij schrijven van $filename");
 
 print "Bestand opgeslagen";