A lot has been rewritten, ext-teams added, ext-forced continued:
[mailer.git] / inc / modules / admin / what-list_cats.php
index dc827167058904671b50385855330d347ef959f3..d17404da55a384594bba010ef8eea1a7aa62c16b 100644 (file)
@@ -52,11 +52,10 @@ if (isGetRequestParameterSet('userid')) {
 
                // Prepare constants
                // @TODO No longer needed? define('__CATEGORIES_BASE'   , '<a href="{%url=modules.php?module=admin&amp;userid=');
-               $content['userid']       = bigintval(getRequestParameter('userid'));
-               $content['email']        = '<a href="' . generateEmailLink($content['email'], 'user_data') . '">' . $content['surname'] . ' ' . $content['family'] . '</a>';
+               $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 = SQL_QUERY("SELECT `id`,`cat` FROM `{?_MYSQL_PREFIX?}_cats` ORDER BY `sort` ASC", __FILE__, __LINE__);
 
                if (!SQL_HASZERONUMS($result_cats)) {
                        // List categories
@@ -72,11 +71,13 @@ if (isGetRequestParameterSet('userid')) {
 
                                // Set selection
                                $selection = '<font color="#ee0000">{--NO--}</div>';
-                               if (SQL_NUMROWS($result_user) == 1) $selection = '<font color="#00ee00">{--YES--}</div>';
+                               if (SQL_NUMROWS($result_user) == 1) {
+                                       $selection = '<font color="#00ee00">{--YES--}</div>';
+                               } // END - if
 
                                // Add more elements
-                               $content['cnt'] = $count;
-                               $content['sel'] = $selection;
+                               $content['count'] = $count;
+                               $content['sel']   = $selection;
 
                                // Load row template and count up
                                $OUT .= loadTemplate('admin_list_user_cats_row', true, $content);
@@ -97,7 +98,7 @@ if (isGetRequestParameterSet('userid')) {
                }
        } else {
                // User not found
-               displayMessage(getMaskedMessage('ADMIN_MEMBER_404', $content['userid']));
+               displayMessage('{%message,ADMIN_MEMBER_404=' . $content['userid'] . '%}');
        }
 } else {
        // Output selection form with all confirmed user accounts listed