]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-config_register.php
Updated copyright notice as there are changes in this year
[mailer.git] / inc / modules / admin / what-config_register.php
index 4307aa33b6de49be1d108a5b011b2ae29ff4db54..9f5a16ecfeeff248b49cf5457677ebae2ca47ba6 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 - 2013 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 *
@@ -43,23 +43,27 @@ if ((!defined('__SECURITY')) || (!isAdmin())) {
 // Add description as navigation point
 addYouAreHereLink('admin', __FILE__);
 
-// Do we want to save changes?
-if (isFormSent()) {
+// Save changes?
+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__);
+                       array(
+                               $value,
+                               bigintval($id),
+                               $value
+                       ),__FILE__, __LINE__);
 
                // Get affected rows
                $count += SQL_AFFECTEDROWS();
        } // 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 +77,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]
 ?>