X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-config_register.php;h=bd94bfd0c794d0233b8f259a40ae614802e2888e;hb=4f7df133f736da124e6f7bd02008b9093f736451;hp=0d65e88d6fb481cb28e3dfab614f1c61413a358c;hpb=4cd3aebe807c719e7867ef5aefe824c55033f72d;p=mailer.git diff --git a/inc/modules/admin/what-config_register.php b/inc/modules/admin/what-config_register.php index 0d65e88d6f..bd94bfd0c7 100644 --- a/inc/modules/admin/what-config_register.php +++ b/inc/modules/admin/what-config_register.php @@ -14,12 +14,10 @@ * $Date:: $ * * $Tag:: 0.2.1-FINAL $ * * $Author:: $ * - * Needs to be in all Files and every File needs "svn propset * - * svn:keywords Date Revision" (autoprobset!) at least!!!!!! * * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2009 by Roland Haeder * - * Copyright (c) 2009, 2010 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 * @@ -43,25 +41,29 @@ if ((!defined('__SECURITY')) || (!isAdmin())) { } // END - if // Add description as navigation point -addMenuDescription('admin', __FILE__); +addYouAreHereLink('admin', __FILE__); -// Do we want to save changes? -if (isFormSent()) { +// Save changes? +if (isFormSent('save_config')) { // Begin counting - $cnt = 0; + $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 - $cnt += SQL_AFFECTEDROWS(); + $count += SQL_AFFECTEDROWS(); } // END - foreach // Output message for updated entries - loadTemplate('admin_settings_saved', false, getMaskedMessage('REGISTER_ADMIN_CHANGES_SAVED', $cnt)); + displayMessage('{%message,ADMIN_REGISTER_CHANGES_SAVED=' . $count . '%}'); } // END - if // List all register values @@ -75,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] ?>