X-Git-Url: https://git.p6c8.net/jirafeau_mojo42.git/blobdiff_plain/9a9c9a8bf83241c193c5bef6361d41893e72dfd3..35f7adea8ca58e6570336e99c3aaf99410e9ac92:/admin.php?ds=inline
diff --git a/admin.php b/admin.php
index 230c512..4500a19 100644
--- a/admin.php
+++ b/admin.php
@@ -16,7 +16,7 @@
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see .
*/
-
+session_start();
define('JIRAFEAU_ROOT', dirname(__FILE__) . '/');
require(JIRAFEAU_ROOT . 'lib/settings.php');
@@ -46,15 +46,12 @@ if (php_sapi_name() == "cli") {
if (empty($cfg['admin_password']) && empty($cfg['admin_http_auth_user'])) {
require(JIRAFEAU_ROOT . 'lib/template/header.php');
echo '
'.
- t('Sorry, the admin interface is not enabled.') .
+ t('NO_ADMIN') .
'
';
require(JIRAFEAU_ROOT.'lib/template/footer.php');
exit;
}
- /* Check session. */
- session_start();
-
/* Unlog if asked. */
if (isset($_POST['action']) && (strcmp($_POST['action'], 'logout') == 0)) {
$_SESSION['admin_auth'] = false;
@@ -69,7 +66,7 @@ if (php_sapi_name() == "cli") {
$_SESSION['admin_auth'] = false;
require(JIRAFEAU_ROOT . 'lib/template/header.php');
echo ''.
- t('Wrong password.') . '
';
+ t('BAD_PSW') . '';
require(JIRAFEAU_ROOT.'lib/template/footer.php');
exit;
}
@@ -78,12 +75,12 @@ if (php_sapi_name() == "cli") {
elseif ((!isset($_SESSION['admin_auth']) || $_SESSION['admin_auth'] != true)
&& empty($cfg['admin_http_auth_user'])) {
require(JIRAFEAU_ROOT . 'lib/template/header.php'); ?>
-