Rewrite of all mail templates with user data to new 'tag-like' functionality
[mailer.git] / inc / modules / member / what-categories.php
index 74e03ce2fbe8dab21a228a3d77848fd5a765c9aa..89ab90cfc410832208bf3630619f48a6497e7356 100644 (file)
@@ -46,7 +46,6 @@ if (!defined('__SECURITY')) {
 // Add description as navigation point
 addMenuDescription('member', __FILE__);
 
-$UID = getMemberId();
 $whereStatement = " WHERE `visible`='Y'";
 if (isAdmin()) $whereStatement = '';
 
@@ -81,7 +80,7 @@ if ($cats > 0) {
                        switch ($joined) {
                                case 'Y':
                                        $result_user = SQL_QUERY_ESC("SELECT `id` FROM `{?_MYSQL_PREFIX?}_user_cats` WHERE `userid`=%s AND `cat_id`=%s LIMIT 1",
-                                               array($UID, bigintval($cat)), __FILE__, __LINE__);
+                                               array(getMemberId(), bigintval($cat)), __FILE__, __LINE__);
 
                                        if (SQL_NUMROWS($result_user) == '0') {
                                                $sql = "INSERT INTO `{?_MYSQL_PREFIX?}_user_cats` (userid, cat_id) VALUES ('%s','%s')";
@@ -98,7 +97,7 @@ if ($cats > 0) {
 
                        if (!empty($sql)) {
                                // Run SQL command
-                               SQL_QUERY_ESC(trim($sql), array($UID, bigintval($cat)), __FILE__, __LINE__);
+                               SQL_QUERY_ESC(trim($sql), array(getMemberId(), bigintval($cat)), __FILE__, __LINE__);
 
                                // Count this row
                                $cnt += SQL_AFFECTEDROWS();
@@ -142,7 +141,7 @@ if ($cats > 0) {
                                }
                        } else {
                                // Check if he has an entry
-                               if (countSumTotalData($UID, 'user_cats', 'id', 'userid', true, sprintf(" AND `cat_id`=%s", bigintval($content['id']))) == 1) {
+                               if (countSumTotalData(getMemberId(), 'user_cats', 'id', 'userid', true, sprintf(" AND `cat_id`=%s", bigintval($content['id']))) == 1) {
                                        $content['jn'] = '';
                                        $content['jy'] = ' checked="checked"';
                                }