X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-sub_points.php;h=a7172e03d88b453c193e2c70a0154a3c63a26e2a;hb=a524135c24dd0a8fa359c9a92399467d50fd69e0;hp=439e4a1e981ee1844a643689db9a93fae68f18c7;hpb=feec3557f5ac09d623406186891ffbaef15f5c37;p=mailer.git diff --git a/inc/modules/admin/what-sub_points.php b/inc/modules/admin/what-sub_points.php index 439e4a1e98..a7172e03d8 100644 --- a/inc/modules/admin/what-sub_points.php +++ b/inc/modules/admin/what-sub_points.php @@ -16,7 +16,7 @@ * $Author:: $ * * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2009 by Roland Haeder * - * Copyright (c) 2009 - 2011 by Mailer Developer Team * + * Copyright (c) 2009 - 2016 by Mailer Developer Team * * For more information visit: http://mxchange.org * * * * This program is free software; you can redistribute it and/or modify * @@ -50,9 +50,9 @@ if (getRequestElement('userid') == 'all') { $content['points'] = bigintval(postRequestElement('points')); // Load userid - $result_main = SQL_QUERY("SELECT `userid`,`email` FROM `{?_MYSQL_PREFIX?}_user_data` WHERE `status`='CONFIRMED' ORDER BY `userid` ASC", + $result_main = sqlQuery("SELECT `userid`, `email` FROM `{?_MYSQL_PREFIX?}_user_data` WHERE `status`='CONFIRMED' ORDER BY `userid` ASC", __FILE__, __LINE__); - while ($row = SQL_FETCHARRAY($result_main)) { + while ($row = sqlFetchArray($result_main)) { // Merge both arrays $content = merge_array($content, $row); @@ -61,21 +61,21 @@ if (getRequestElement('userid') == 'all') { // Prepare content $content = array( - 'reason' => SQL_ESCAPE(postRequestElement('reason')), + 'reason' => sqlEscapeString(postRequestElement('reason')), 'points' => bigintval(postRequestElement('points')), 'subject' => 'admin_sub_all', ); // Load message and send it away $message = loadEmailTemplate('member_sub_points', $content, bigintval($content['userid'])); - sendEmail($row['userid'], '{--ADMIN_SUB_SUBJECT--}', $message); + sendEmail($row['userid'], '{--ADMIN_SUB_POINTS_SUBJECT--}', $message); } // END - while // Free memory - SQL_FREERESULT($result_main); + sqlFreeResult($result_main); // Output message - displayMessage('{--ADMIN_ALL_POINTS_SUBTRACTED--}'); + displayMessage('{--ADMIN_ALL_POINTS_SUB_DONE--}'); } else { // Display form add points loadTemplate('admin_sub_points_all'); @@ -92,14 +92,14 @@ if (getRequestElement('userid') == 'all') { // Prepare content $content = array( - 'reason' => SQL_ESCAPE(postRequestElement('reason')), + 'reason' => sqlEscapeString(postRequestElement('reason')), 'points' => bigintval(postRequestElement('points')), 'subject' => 'admin_sub_single', ); // Load email and send it away $message = loadEmailTemplate('member_sub_points', $content, bigintval(getRequestElement('userid'))); - sendEmail(getRequestElement('userid'), '{--ADMIN_SUB_SUBJECT--}', $message); + sendEmail(getRequestElement('userid'), '{--ADMIN_SUB_POINTS_SUBJECT--}', $message); // Output message displayMessage('{--ADMIN_POINTS_SUBTRACTED--}'); @@ -108,15 +108,15 @@ if (getRequestElement('userid') == 'all') { $content['userid'] = bigintval(getRequestElement('userid')); // Load form - loadTemplate('admin_sub_points', false, $content); + loadTemplate('admin_sub_points', FALSE, $content); } } else { // User not found - loadTemplate('admin_settings_unsaved', false, '{%message,ADMIN_MEMBER_404=' . bigintval(getRequestElement('userid')) . '%}'); + displayErrorMessage('{%message,ADMIN_MEMBER_404=' . bigintval(getRequestElement('userid')) . '%}'); } } else { // Output selection form with all confirmed user accounts listed - addMemberSelectionBox(0, true); + addMemberSelectionBox(0, TRUE); } // [EOF]