X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fadmin%2Fwhat-add_points.php;h=7c96f3acc35c85ffa11d666eff68f94c255e37b4;hb=bdca58e2ac18d5f06a6b8a30a3488eb1360b67d9;hp=3afba091ea0198775c6989c04725f07edc6b47c9;hpb=2379934be6a196a54f4155bb8e24c49b20736969;p=mailer.git diff --git a/inc/modules/admin/what-add_points.php b/inc/modules/admin/what-add_points.php index 3afba091ea..7c96f3acc3 100644 --- a/inc/modules/admin/what-add_points.php +++ b/inc/modules/admin/what-add_points.php @@ -17,7 +17,7 @@ * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2009 by Roland Haeder * * Copyright (c) 2009 - 2011 by Mailer Developer Team * - * For more information visit: http://www.mxchange.org * + * 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 * @@ -58,19 +58,15 @@ if (getRequestElement('userid') == 'all') { // Merge $row into $content $content = merge_array($content, $row); - // Remove depth to prevent booking errors. This is a bad coding - // practice, thats also why we need to write this project from - // scratch... - $GLOBALS['ref_level'] = -1; - // Ok, add points and send an email to him... - addPointsDirectly('admin_all', $content['userid'], bigintval(postRequestElement('points'))); + addPointsDirectly('admin_add_all', $content['userid'], bigintval(postRequestElement('points'))); // Prepare content $content = array( - 'reason' => SQL_ESCAPE(postRequestElement('reason')), - 'points' => bigintval(postRequestElement('points')), - 'userid' => $row['userid'] + 'reason' => SQL_ESCAPE(postRequestElement('reason')), + 'points' => bigintval(postRequestElement('points')), + 'userid' => $row['userid'], + 'subject' => 'admin_add_all', ); // Load email template and send email away @@ -95,18 +91,22 @@ if (getRequestElement('userid') == 'all') { if ((isFormSent()) && (isPostRequestElementSet('points'))) { // Add points and send an email to him... - addPointsDirectly('admin_single', bigintval(getRequestElement('userid')), bigintval(postRequestElement('points'))); + addPointsDirectly('admin_add_single', bigintval(getRequestElement('userid')), bigintval(postRequestElement('points'))); // Prepare content $content = array( - 'reason' => SQL_ESCAPE(postRequestElement('reason')), - 'points' => bigintval(postRequestElement('points')) + 'reason' => SQL_ESCAPE(postRequestElement('reason')), + 'points' => bigintval(postRequestElement('points')), + 'subject' => 'admin_add_single', ); - // Message laden + // Load message $message = loadEmailTemplate('member_add_points', $content, bigintval(getRequestElement('userid'))); + // Send the email out sendEmail(bigintval(getRequestElement('userid')), '{--ADMIN_ADD_SUBJECT--}', $message); + + // .. and display a message displayMessage('{--ADMIN_POINTS_ADDED--}'); } else { // Prepare content