Renamed ifSqlHasZeroNums() to ifSqlHasZeroNumRows() and improved some queries.
[mailer.git] / inc / modules / admin / what-list_user_cats.php
index bfb2cbd3d9f64032cb229e05bc4cd9ab786a709f..f357196c904cf79e53928cbf8f86f0e0fe257552 100644 (file)
@@ -17,7 +17,7 @@
  * $Author::                                                          $ *
  * -------------------------------------------------------------------- *
  * Copyright (c) 2003 - 2009 by Roland Haeder                           *
- * Copyright (c) 2009 - 2013 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 *
@@ -55,23 +55,29 @@ 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 (!ifSqlHasZeroNumRows($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 +91,7 @@ if (isGetRequestElementSet('userid')) {
                        } // END - while
 
                        // Free memory
-                       SQL_FREERESULT($result_cats);
+                       sqlFreeResult($result_cats);
 
                        // Remember all rows in the array
                        $content['rows'] = $OUT;