Renamed ifSqlHasZeroNums() to ifSqlHasZeroNumRows() and improved some queries.
[mailer.git] / inc / modules / admin / what-list_user_cats.php
index 05d4408c7d8a69db60b88172c8c9d4491b4044e7..f357196c904cf79e53928cbf8f86f0e0fe257552 100644 (file)
@@ -55,9 +55,15 @@ 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 = sqlQuery("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 (!ifSqlHasZeroNums($result_cats)) {
+               if (!ifSqlHasZeroNumRows($result_cats)) {
                        // List categories
                        $count = 1; $OUT = '';
                        while ($row = sqlFetchArray($result_cats)) {