X-Git-Url: https://git.p6c8.net/jirafeau_mojo42.git/blobdiff_plain/96707e02b8b24054e0827eaf169cc88504a1e78c..48f14e7b05a452683cf059b767ea6b071a300edd:/admin.php?ds=sidebyside
diff --git a/admin.php b/admin.php
index e4321db..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'); ?>
-