Renamed all SQL-related functions to camel-case notation
[mailer.git] / inc / modules / admin / what-list_user_cats.php
index bfb2cbd3d9f64032cb229e05bc4cd9ab786a709f..a3d890136a3c5f18f312fa618470947fe5b10a98 100644 (file)
@@ -55,23 +55,23 @@ if (isGetRequestElementSet('userid')) {
                $content['email']  = '<a href="' . generateEmailLink($content['email'], 'user_data') . '">{%pipe,translateGender=' . $content['gender'] . '%} ' . $content['surname'] . ' ' . $content['family'] . '</a>';
 
                // Ok, list categories of this user
-               $result_cats = SQL_QUERY("SELECT `id`, `cat` FROM `{?_MYSQL_PREFIX?}_cats` ORDER BY `sort` ASC", __FILE__, __LINE__);
+               $result_cats = sqlQuery("SELECT `id`, `cat` FROM `{?_MYSQL_PREFIX?}_cats` ORDER BY `sort` ASC", __FILE__, __LINE__);
 
-               if (!SQL_HASZERONUMS($result_cats)) {
+               if (!ifSqlHasZeroNums($result_cats)) {
                        // List categories
                        $count = 1; $OUT = '';
-                       while ($row = SQL_FETCHARRAY($result_cats)) {
+                       while ($row = sqlFetchArray($result_cats)) {
                                // Merge both arrays
                                $content = merge_array($content, $row);
 
                                // Check user's selection
                                // @TODO Rewrite this to countSum.....() function
-                               $result_user = SQL_QUERY_ESC("SELECT `id` FROM `{?_MYSQL_PREFIX?}_user_cats` WHERE `userid`=%s AND `cat_id`=%s LIMIT 1",
+                               $result_user = sqlQueryEscaped("SELECT `id` FROM `{?_MYSQL_PREFIX?}_user_cats` WHERE `userid`=%s AND `cat_id`=%s LIMIT 1",
                                        array(bigintval(getRequestElement('userid')), bigintval($content['id'])), __FILE__, __LINE__);
 
                                // Set selection
                                $selection = '<font color="#ee0000">{--NO--}</div>';
-                               if (SQL_NUMROWS($result_user) == 1) {
+                               if (sqlNumRows($result_user) == 1) {
                                        $selection = '<font color="#00ee00">{--YES--}</div>';
                                } // END - if
 
@@ -85,7 +85,7 @@ if (isGetRequestElementSet('userid')) {
                        } // END - while
 
                        // Free memory
-                       SQL_FREERESULT($result_cats);
+                       sqlFreeResult($result_cats);
 
                        // Remember all rows in the array
                        $content['rows'] = $OUT;