Renamed all SQL-related functions to camel-case notation
[mailer.git] / inc / modules / admin / what-sub_points.php
index eb2dd8ea3ff1067443e0a889fee3b12787ee499a..92d91b275cd3c62796cbd5015f660484ba15c9fc 100644 (file)
@@ -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,7 +61,7 @@ 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',
                        );
@@ -72,7 +72,7 @@ if (getRequestElement('userid') == 'all') {
                } // END - while
 
                // Free memory
-               SQL_FREERESULT($result_main);
+               sqlFreeResult($result_main);
 
                // Output message
                displayMessage('{--ADMIN_ALL_POINTS_SUB_DONE--}');
@@ -92,7 +92,7 @@ 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',
                        );