From: Zertrin Date: Sat, 10 May 2014 13:07:09 +0000 (+0200) Subject: No more needed to delete install.php to access admin.php X-Git-Tag: 1.1~183 X-Git-Url: https://git.p6c8.net/jirafeau_project.git/commitdiff_plain/12b5f1c92a8860eb2f72b99d6eda34971f82463e No more needed to delete install.php to access admin.php Signed-off-by: Jerome Jutteau --- diff --git a/admin.php b/admin.php index 5ae2d6e..80b18b1 100755 --- a/admin.php +++ b/admin.php @@ -32,19 +32,8 @@ if (file_exists (JIRAFEAU_ROOT . 'install.php') exit; } -/* Check if the install.php script is still in the directory. */ -if (file_exists (JIRAFEAU_ROOT . 'install.php')) -{ - require (JIRAFEAU_ROOT . 'lib/template/header.php'); - echo '

'. - t('Installer script still present') . - '

'; - require (JIRAFEAU_ROOT.'lib/template/footer.php'); - exit; -} - /* Disable admin interface if we have a empty admin password. */ -if (!$cfg['admin_password']) +if (empty($cfg['admin_password'])) { require (JIRAFEAU_ROOT . 'lib/template/header.php'); echo '

'.