From 12b5f1c92a8860eb2f72b99d6eda34971f82463e Mon Sep 17 00:00:00 2001 From: Zertrin Date: Sat, 10 May 2014 15:07:09 +0200 Subject: [PATCH] No more needed to delete install.php to access admin.php Signed-off-by: Jerome Jutteau --- admin.php | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) 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 '

'. -- 2.34.1