login: replace page editability var by admin status
[minimedit.git] / edit.php
index 12859595de865444baf29dd94a8f1eaa1b61ca57..3774bfc51407bf441ed055b8ffcbd7342a129887 100755 (executable)
--- a/edit.php
+++ b/edit.php
@@ -5,6 +5,10 @@ function abort($status, $body) {
        exit;
 }
 
+require 'auth.inc.php';
+if (!$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)