X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-config_register.php;h=4307aa33b6de49be1d108a5b011b2ae29ff4db54;hb=1410e014d23f244e73d3a7916a61c2473416bab9;hp=1c6792fde03c6b69c2818f99357c086b30fba970;hpb=32fed28f469610c8bfdec7f18089cceea9e15df0;p=mailer.git diff --git a/inc/modules/admin/what-config_register.php b/inc/modules/admin/what-config_register.php index 1c6792fde0..4307aa33b6 100644 --- a/inc/modules/admin/what-config_register.php +++ b/inc/modules/admin/what-config_register.php @@ -14,11 +14,9 @@ * $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 * + * Copyright (c) 2009 - 2011 by Mailer Developer Team * * For more information visit: http://www.mxchange.org * * * * This program is free software; you can redistribute it and/or modify * @@ -43,12 +41,12 @@ 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()) { // Begin counting - $cnt = 0; + $count = 0; // Update all entries foreach (postRequestParameter('sel') as $id => $value) { @@ -57,11 +55,11 @@ if (isFormSent()) { 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(getMaskedMessage('ADMIN_REGISTER_CHANGES_SAVED', $count)); } // END - if // List all register values @@ -69,7 +67,7 @@ $result = SQL_QUERY("SELECT `id`, `field_name`, `field_required` FROM `{?_MYSQL_ $OUT = ''; while ($content = SQL_FETCHARRAY($result)) { // Get language string - $content['field_name'] = getMessage(strtoupper($content['field_name'])); + $content['field_name'] = '{--' . strtoupper($content['field_name']) . '--}'; // Add more data $content['selection'] = addSelectionBox('yn', $content['field_required'], 'sel[' . $content['id'] . ']');