]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-config_rewrite.php
Extension ext-network cleaned up
[mailer.git] / inc / modules / admin / what-config_rewrite.php
index 55439336130c495514a982f83a2540469df3eec8..8a64f7081b12a96ff459accff55def91ba622eb4 100644 (file)
@@ -43,7 +43,7 @@ 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) {
@@ -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]