From 1b3d0ab4ac29dc2c07e5c2d3583e3593c398c02a Mon Sep 17 00:00:00 2001 From: Martin Ambrus Date: Sat, 28 Oct 2017 09:58:54 +0200 Subject: [PATCH] fix: this install redirect somehow escaped the last fix :P --- login.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/login.php b/login.php index 94c85c56..133ec212 100644 --- a/login.php +++ b/login.php @@ -10,7 +10,7 @@ ## ## ################################################################################# -if(!file_exists('var/installed') && @opendir('/var/installed')) { +if(!file_exists('var/installed') && @opendir('install')) { header("Location: install/"); exit; }