]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-config_wernis.php
More deprecated checking boolean expressions fixed
[mailer.git] / inc / modules / admin / what-config_wernis.php
index c5478c8ce7692c00fec710d9cf2de05ca10a7aef..be8e48fe7f0829fc1a07fd28ca4c0686a53b71c6 100644 (file)
  ************************************************************************/
 
 // Some security stuff...
-if ((ereg(basename(__FILE__), $_SERVER['PHP_SELF'])) || (!IS_ADMIN()))
-{
+if ((!defined('__SECURITY')) || (!IS_ADMIN())) {
        $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
        require($INC);
 }
+
 // Add description as navigation point
-ADD_DESCR("admin", basename(__FILE__));
+ADD_DESCR("admin", __FILE__);
 
 if (isset($_POST['ok'])) {
        // First merge temporarily the new API data into the current config
@@ -51,6 +51,10 @@ if (isset($_POST['ok'])) {
                        $_POST['wernis_'.$revert] = REVERT_COMMA($_POST['wernis_'.$revert]);
                } // END - if
 
+               // Hash the password and remove clear-text
+               $_POST['wernis_pass_md5'] = md5($_POST['wernis_pass']);
+               unset($_POST['wernis_pass']);
+
                // Save settings
                ADMIN_SAVE_SETTINGS($_POST);
        } else {