]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-config_register.php
Added more config wrappers
[mailer.git] / inc / modules / admin / what-config_register.php
index 4307aa33b6de49be1d108a5b011b2ae29ff4db54..eec09e7723e895ae0c34eb6c7ac6b2967ad33f91 100644 (file)
@@ -16,8 +16,8 @@
  * $Author::                                                          $ *
  * -------------------------------------------------------------------- *
  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
- * Copyright (c) 2009 - 2011 by Mailer Developer Team                   *
- * For more information visit: http://www.mxchange.org                  *
+ * Copyright (c) 2009 - 2012 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 *
@@ -44,12 +44,12 @@ if ((!defined('__SECURITY')) || (!isAdmin())) {
 addYouAreHereLink('admin', __FILE__);
 
 // Do we want to save changes?
-if (isFormSent()) {
+if (isFormSent('save_config')) {
        // Begin counting
        $count = 0;
 
        // Update all entries
-       foreach (postRequestParameter('sel') as $id => $value) {
+       foreach (postRequestElement('sel') as $id => $value) {
                // Update database
                SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_must_register` SET `field_required`='%s' WHERE `id`=%s AND `field_required` != '%s' LIMIT 1",
                        array($value, bigintval($id), $value),__FILE__, __LINE__);
@@ -59,7 +59,7 @@ if (isFormSent()) {
        } // END - foreach
 
        // Output message for updated entries
-       displayMessage(getMaskedMessage('ADMIN_REGISTER_CHANGES_SAVED', $count));
+       displayMessage('{%message,ADMIN_REGISTER_CHANGES_SAVED=' . $count . '%}');
 } // END - if
 
 // List all register values
@@ -73,14 +73,14 @@ while ($content = SQL_FETCHARRAY($result)) {
        $content['selection'] = addSelectionBox('yn', $content['field_required'], 'sel[' . $content['id'] . ']');
 
        // @TODO Move this HTML code into a template
-       $OUT .= loadTemplate('admin_config_register_row', true, $content);
+       $OUT .= loadTemplate('admin_config_register_row', TRUE, $content);
 } // END - while
 
 // Free memory
 SQL_FREERESULT($result);
 
 // Load template
-loadTemplate('admin_config_register', false, $OUT);
+loadTemplate('admin_config_register', FALSE, $OUT);
 
 // [EOF]
 ?>