X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-edit_sponsor.php;h=631eef75314a46e14a88bced7ce0b8bca4082716;hb=ad851a23313d8ac6489a759a0f3d62e3bc6f4682;hp=c80ba7483006615ebf20667266376794b81a7d96;hpb=963e55ca1ea79e255f235e359cde9f7862191dc5;p=mailer.git diff --git a/inc/modules/admin/what-edit_sponsor.php b/inc/modules/admin/what-edit_sponsor.php index c80ba74830..631eef7531 100644 --- a/inc/modules/admin/what-edit_sponsor.php +++ b/inc/modules/admin/what-edit_sponsor.php @@ -15,9 +15,10 @@ * Copyright (c) 2003 - 2008 by Roland Haeder * * For more information visit: http://www.mxchange.org * * * - * This program is free software. You can redistribute it and/or modify * + * 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 * - * the Free Software Foundation; either version 2 of the License. * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * @@ -31,13 +32,13 @@ ************************************************************************/ // Some security stuff... -if ((!defined('__SECURITY')) || (!is_admin())) { +if ((!defined('__SECURITY')) || (!IS_ADMIN())) { $INC = substr(dirname(__FILE__), 0, strpos(dirname(__FILE__), "/inc") + 4)."/security.php"; require($INC); } // Add description as navigation point -ADD_DESCR("admin", basename(__FILE__)); +ADD_DESCR("admin", __FILE__); if ((!empty($_GET['id'])) && (!empty($_GET['mode']))) { // Check for selected sponsor @@ -59,21 +60,21 @@ if ((!empty($_GET['id'])) && (!empty($_GET['mode']))) { switch ($DATA['gender']) { case "M": - define('__GENDER_M', " selected"); + define('__GENDER_M', " selected=\"selected\""); define('__GENDER_F', ""); define('__GENDER_C', ""); break; case "F": define('__GENDER_M', ""); - define('__GENDER_F', " selected"); + define('__GENDER_F', " selected=\"selected\""); define('__GENDER_C', ""); break; case "C": define('__GENDER_M', ""); define('__GENDER_F', ""); - define('__GENDER_C', " selected"); + define('__GENDER_C', " selected=\"selected\""); break; } define('__SURNAME' , $DATA['surname']); @@ -105,7 +106,7 @@ if ((!empty($_GET['id'])) && (!empty($_GET['mode']))) { case "add_points": // Add points if (strval($_POST['points']) > 0) { // Replace german decimal comma with computer's decimal dot - $POINTS = strval(str_replace(",", ".", $_POST['points'])); + $POINTS = strval(REVERT_COMMA($_POST['points'])); // Add points to account $result_add = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_sponsor_data SET points_amount=points_amount+%s WHERE id='%s' LIMIT 1", @@ -128,7 +129,7 @@ if ((!empty($_GET['id'])) && (!empty($_GET['mode']))) { case "sub_points": // Subtract points if (strval($_POST['points']) > 0) { // Replace german decimal comma with computer's decimal dot - $POINTS = strval(str_replace(",", ".", $_POST['points'])); + $POINTS = strval(REVERT_COMMA($_POST['points'])); // Add points to account $result_add = SQL_QUERY_ESC("UPDATE "._MYSQL_PREFIX."_sponsor_data SET points_used=points_used+%s WHERE id='%s' LIMIT 1", @@ -169,6 +170,7 @@ if ((!empty($_GET['id'])) && (!empty($_GET['mode']))) { break; default: // Unknown mode + DEBUG_LOG(__FILE__, __LINE__, sprintf("Unknown mode %s detected.", $_GET['mode'])); $MSG = ADMIN_INVALID_MODE_1.SQL_ESCAPE($_GET['mode']).ADMIN_INVALID_MODE_2; break; }