X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-config_points.php;h=2f0808e26f4f501c451e3b03d2a8e6d9a9fb5205;hb=a41aaa25ffabde1e6ec7f3951288569f4bd827b2;hp=78d995c954666f0a5ceee10293b8590462dac62c;hpb=c8d76610eb94093d4eed4fcd8a6cb72e74c8f6d8;p=mailer.git diff --git a/inc/modules/admin/what-config_points.php b/inc/modules/admin/what-config_points.php index 78d995c954..2f0808e26f 100644 --- a/inc/modules/admin/what-config_points.php +++ b/inc/modules/admin/what-config_points.php @@ -16,7 +16,7 @@ * $Author:: $ * * -------------------------------------------------------------------- * * 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 * @@ -41,7 +41,7 @@ if ((!defined('__SECURITY')) || (!isAdmin())) { } // END - if // Add description as navigation point -addMenuDescription('admin', __FILE__); +addYouAreHereLink('admin', __FILE__); // Init variables $message = ''; @@ -77,10 +77,9 @@ if (isFormSent()) { break; case 'ref': - switch (getRequestParameter('do')) - { + switch (getRequestParameter('do')) { case 'add': - addSql("INSERT INTO `{?_MYSQL_PREFIX?}_refdepths` (`level`, `percents`) VALUES ('".postRequestParameter('level')."','".postRequestParameter('percents')."')"); + addSql("INSERT INTO `{?_MYSQL_PREFIX?}_refdepths` (`level`, `percents`) VALUES ('".bigintval(postRequestParameter('level'))."','".bigintval(postRequestParameter('percents'))."')"); break; case 'edit': // Change entries @@ -94,7 +93,7 @@ if (isFormSent()) { // Update entry SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_refdepths` SET `level`=%s, `percents`=%s WHERE `id`=%s LIMIT 1", array(bigintval($value), convertCommaToDot(postRequestParameter('percents', $id)), $id), __FILE__, __LINE__); - } + } // END - foreach $message = '{--ADMIN_REFERAL_DEPTHS_SAVED--}'; break; @@ -102,10 +101,10 @@ if (isFormSent()) { foreach (postRequestParameter('id') as $id => $value) { SQL_QUERY_ESC("DELETE LOW_PRIORITY FROM `{?_MYSQL_PREFIX?}_refdepths` WHERE `id`=%s LIMIT 1", array(bigintval($id)), __FILE__, __LINE__); - } + } // END - foreach $message = '{--ADMIN_REFERAL_DEPTHS_DELETED--}'; break; - } + } // END - switch // Update cache file // @TODO Rewrite this to a filter @@ -136,7 +135,7 @@ WHERE if ((isSqlsValid()) && (isSqlsValid())) { if (strpos($GLOBALS['sqls'][0], 'INSERT') > -1) { - $result = SQL_QUERY_ESC("SELECT `id` FROM `{?_MYSQL_PREFIX?}_refdepths` WHERE `level`='%s' LIMIT 1", + $result = SQL_QUERY_ESC("SELECT `id` FROM `{?_MYSQL_PREFIX?}_refdepths` WHERE `level`=%s LIMIT 1", array(bigintval(postRequestParameter('level'))), __FILE__, __LINE__); SQL_FREERESULT($result); } // END - if @@ -162,7 +161,7 @@ WHERE // Shall we display a message? if (!empty($message)) { // When do so... - loadTemplate('admin_settings_saved', false, $message); + displayMessage($message); } // END - if } elseif (getRequestParameter('sub') == 'settings') { // Setup some settings like direct pay and so on @@ -222,9 +221,6 @@ WHERE // List already existing categories for editing while ($content = SQL_FETCHARRAY($result)) { - // Prepare data for the row template - $content['percents'] = translateComma($content['percents']); - // Load row template and switch color $OUT .= loadTemplate('admin_list_reflevel_row', true, $content); } // END - while