]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/admin/what-add_points.php
introduced isSqlResult() which encapsulates checking MySQL/i results
[mailer.git] / inc / modules / admin / what-add_points.php
index 391420ca70b7af5a5cdefee7b118d434b26b7762..f376333cae938d4e899bd1109b8a959417f04309 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 - 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,11 +50,11 @@ if (getRequestElement('userid') == 'all') {
                $content['points'] = bigintval(postRequestElement('points'));
 
                // Select all users
-               $result_main = SQL_QUERY("SELECT `userid` FROM `{?_MYSQL_PREFIX?}_user_data` WHERE `status`='CONFIRMED' ORDER BY `userid` ASC",
+               $result_main = sqlQuery("SELECT `userid` FROM `{?_MYSQL_PREFIX?}_user_data` WHERE `status`='CONFIRMED' ORDER BY `userid` ASC",
                        __FILE__, __LINE__);
 
                // Process all entries
-               while ($row = SQL_FETCHARRAY($result_main)) {
+               while ($row = sqlFetchArray($result_main)) {
                        // Merge $row into $content
                        $content = merge_array($content, $row);
 
@@ -66,7 +66,7 @@ if (getRequestElement('userid') == 'all') {
 
                        // Prepare content
                        $content = array(
-                               'reason'  => SQL_ESCAPE(postRequestElement('reason')),
+                               'reason'  => sqlEscapeString(postRequestElement('reason')),
                                'points'  => bigintval(postRequestElement('points')),
                                'userid'  => $row['userid'],
                                'subject' => 'admin_add_all',
@@ -78,7 +78,7 @@ if (getRequestElement('userid') == 'all') {
                } // END - while
 
                // Free memory
-               SQL_FREERESULT($result_main);
+               sqlFreeResult($result_main);
 
                // Output message
                displayMessage('{--ADMIN_ALL_POINTS_ADDED--}');
@@ -101,7 +101,7 @@ if (getRequestElement('userid') == 'all') {
 
                        // Prepare content
                        $content = array(
-                               'reason'  => SQL_ESCAPE(postRequestElement('reason')),
+                               'reason'  => sqlEscapeString(postRequestElement('reason')),
                                'points'  => bigintval(postRequestElement('points')),
                                'subject' => 'admin_add_single',
                        );
@@ -123,7 +123,7 @@ if (getRequestElement('userid') == 'all') {
                }
        } 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