]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-config_rewrite.php
Updated copyright notice as there are changes in this year
[mailer.git] / inc / modules / admin / what-config_rewrite.php
index fbdad66842446c4c7a333020b9d0003d027d496e..201a54f5937b1b8a3f1905c81fbf0cf5dbfc8481 100644 (file)
@@ -16,7 +16,7 @@
  * $Author::                                                          $ *
  * -------------------------------------------------------------------- *
  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
- * Copyright (c) 2009 - 2011 by Mailer Developer Team                   *
+ * Copyright (c) 2009 - 2013 by Mailer Developer Team                   *
  * For more information visit: http://mxchange.org                      *
  *                                                                      *
  * This program is free software; you can redistribute it and/or modify *
@@ -43,16 +43,16 @@ if ((!defined('__SECURITY')) || (!isAdmin())) {
 // Add description as navigation point
 addYouAreHereLink('admin', __FILE__);
 
-if (isFormSent()) {
+if (isFormSent('save_config')) {
        // Generate string
        $MODs = array();
        foreach (postRequestElement('mod') as $mod => $sel) {
                // Now you can never deselect the admin module, bah!!! ;-)
                if (($sel == 'Y') || ($mod == 'admin')) {
                        // Add module to queue
-                       $MODs[] = $mod;
-               }
-       }
+                       array_push($MODs, $mod);
+               } // END - if
+       } // END - foreach
 
        // Implode array to string and remove posted mod array
        setPostRequestElement('rewrite_skip', implode(':', $MODs));
@@ -62,7 +62,7 @@ if (isFormSent()) {
        adminSaveSettingsFromPostData();
 } else {
        // Load existing modules and generate TR rows for the template
-       $result = SQL_QUERY("SELECT `module`,`title` FROM `{?_MYSQL_PREFIX?}_mod_reg` ORDER BY module", __FILE__, __LINE__);
+       $result = SQL_QUERY("SELECT `module`, `title` FROM `{?_MYSQL_PREFIX?}_mod_reg` ORDER BY module", __FILE__, __LINE__);
        $OUT = '';
        while ($content = SQL_FETCHARRAY($result)) {
                // Already registered module?
@@ -81,14 +81,14 @@ if (isFormSent()) {
                $content['n_default'] = $n;
 
                // Load template and switch colors
-               $OUT .= loadTemplate('admin_config_rewrite_rows', true, $content);
+               $OUT .= loadTemplate('admin_config_rewrite_rows', TRUE, $content);
        } // END - while
 
        // Free memory
        SQL_FREERESULT($result);
 
        // Load main template
-       loadTemplate('admin_config_rewrite', false, $OUT);
+       loadTemplate('admin_config_rewrite', FALSE, $OUT);
 }
 
 // [EOF]