]> git.p6c8.net - jirafeau.git/blobdiff - admin.php
Define constants only if Sodium is available
[jirafeau.git] / admin.php
index 79918bea89eb695331cdeb860625b6c19c4b15bc..0f8967f90736d5193841e4ba664a99dbad699b43 100644 (file)
--- a/admin.php
+++ b/admin.php
@@ -120,6 +120,10 @@ if (php_sapi_name() == "cli") {
         require(JIRAFEAU_ROOT . 'lib/template/header.php'); ?><h2><?php echo t('ADMIN_INTERFACE'); ?></h2><?php
         ?><h2>(version <?php echo JIRAFEAU_VERSION ?>)</h2><?php
 
+        if ($cfg['enable_crypt'] && !(extension_loaded('sodium'))) {
+            echo '<div class="error"><p>'.t('SODIUM_UNAVAILABLE').'</p></div>';
+        }
+
         ?><div id = "admin">
           <fieldset><legend><?php echo t('ACTIONS'); ?></legend>
           <table>
@@ -303,6 +307,7 @@ if (php_sapi_name() == "cli") {
 
     require(JIRAFEAU_ROOT.'lib/template/footer.php');
 } else {
+    require(JIRAFEAU_ROOT . 'lib/template/header.php');
     jirafeau_fatal_error(t('ACCESS_KO'), $cfg);
 }
 ?>

patrick-canterino.de