]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-sub_points.php
Renamed ifSqlHasZeroNums() to ifSqlHasZeroNumRows() and improved some queries.
[mailer.git] / inc / modules / admin / what-sub_points.php
index 77249ba5ca20420648b3a2d1e7af3245cc722345..3616f81754a4d6520ae67c4be7e33e308589e98c 100644 (file)
@@ -16,7 +16,7 @@
  * $Author::                                                          $ *
  * -------------------------------------------------------------------- *
  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
- * Copyright (c) 2009 - 2012 by Mailer Developer Team                   *
+ * Copyright (c) 2009 - 2015 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]