]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-config_secure.php
Renamed ifSqlHasZeroNums() to ifSqlHasZeroNumRows() and improved some queries.
[mailer.git] / inc / modules / admin / what-config_secure.php
index 6b69b6df564968330dfb52451c48216cdd34441c..066a0c20211820bffcb95542132a31a4e16f9238 100644 (file)
@@ -1,7 +1,7 @@
 <?php
 /************************************************************************
- * MXChange v0.2.1                                    Start: 10/11/2003 *
- * ===============                              Last change: 12/21/2004 *
+ * Mailer v0.2.1-FINAL                                Start: 10/11/2003 *
+ * ===================                          Last change: 12/21/2004 *
  *                                                                      *
  * -------------------------------------------------------------------- *
  * File              : what-config_secure.php                           *
  * -------------------------------------------------------------------- *
  * Kurzbeschreibung  : Sicherheitsrelevante Einstellungen               *
  * -------------------------------------------------------------------- *
- *                                                                      *
+ * $Revision::                                                        $ *
+ * $Date::                                                            $ *
+ * $Tag:: 0.2.1-FINAL                                                 $ *
+ * $Author::                                                          $ *
  * -------------------------------------------------------------------- *
- * Copyright (c) 2003 - 2008 by Roland Haeder                           *
- * For more information visit: http://www.mxchange.org                  *
+ * Copyright (c) 2003 - 2009 by Roland Haeder                           *
+ * Copyright (c) 2009 - 2015 by Mailer Developer Team                   *
+ * For more information visit: http://mxchange.org                      *
  *                                                                      *
  * This program is free software; you can redistribute it and/or modify *
  * it under the terms of the GNU General Public License as published by *
  ************************************************************************/
 
 // Some security stuff...
-if ((!defined('__SECURITY')) || (!IS_ADMIN())) {
-       $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4) . "/security.php";
-       require($INC);
-}
+if ((!defined('__SECURITY')) || (!isAdmin())) {
+       die();
+} // END - if
+
 // Add description as navigation point
-ADD_DESCR("admin", basename(__FILE__));
+addYouAreHereLink('admin', __FILE__);
 
-if (isset($_POST['ok']))
-{
+if (isFormSent('save_config')) {
        // If salt length is empty or null then we shall generate new passwords
-       if (empty($_POST['salt_length']) || ($_POST['salt_length'] == "0"))
-       {
+       if (!isPostRequestElementSet('salt_length') || (postRequestElement('salt_length') == '0')) {
                // Generate new passwords for all!
-               require(PATH."/inc/gen_sql_patches.php");
+               loadInclude('inc/gen_sql_patches.php');
 
                // Forget the wrong number!
-               unset($_POST['salt_length']);
+               unsetPostRequestElement('salt_length');
 
                // Redirect to logout link
-               LOAD_URL("modules.php?module=admin&logout=1");
-       }
+               redirectToUrl('modules.php?module=admin&amp;logout=1');
+       } // END - if
 
        // Save settings
-       ADMIN_SAVE_SETTINGS($_POST);
-}
- else
-{
-       // Remember stuff in constants
-       define('__PASS_LEN'   , $_CONFIG['pass_len']);
+       adminSaveSettingsFromPostData();
+} else {
+       // Prepare content
+       $content = array();
+
+       // Loop all scores
+       for ($idx = 0; $idx <= 5; $idx++) {
+               // Init value
+               $content['min_password_score_' . $idx] = '';
+       } // END - for
 
-       // Password-salt length
-       define('__SALT_LENGTH', $_CONFIG['salt_length']);
+       // Set default
+       $content['min_password_score_' . strtolower(getMinPasswordScore())] = ' selected="selected"';
 
        // Load template
-       LOAD_TEMPLATE("admin_config_secure");
+       loadTemplate('admin_config_secure', FALSE, $content);
 }
 
-//
+// [EOF]
 ?>