login: emulate apache authentication to check admin login
[minimedit.git] / foot.inc.php
index 799fb133ed688cce2dc91c77f921ebeb25ffb9ef..229cae8dea3294ee46aa3fa0ecdd16fd4a06f516 100755 (executable)
@@ -3,11 +3,7 @@
 <?php
 define('N', "\n");
 
-$ALLOWED = [
-       '127.0.0.1',
-];
-$editable = in_array($_SERVER['REMOTE_ADDR'], $ALLOWED) ?
-       $_SERVER['REMOTE_ADDR'] : FALSE;
+include 'auth.inc.php';
 
 $curfile = ltrim($_SERVER['SCRIPT_NAME'], '/');
 if (is_executable(__DIR__ . '/' . $curfile)) {
@@ -32,7 +28,7 @@ EOT;
        }
 
        echo '<p class="footer">'.N;
-       echo "Beheer toegestaan voor $editable:".N;
+       echo "Beheer toegestaan voor $User:".N;
        printf('<a href="?%s">%s</a>'.N,
                $edit ? '' : 'edit',
                $edit ? 'lezen' : ($notfound ? 'aanmaken' : 'aanpassen')