Code style changed, ext-user continued:
[mailer.git] / inc / modules / member / what-categories.php
index 7c6b40505570689ca1fd7bff348ae72131d4c99e..35f21dda296047469278ee50c2e8d458d0863fba 100644 (file)
@@ -53,7 +53,7 @@ $result = SQL_QUERY("SELECT `id`, `cat` FROM `{?_MYSQL_PREFIX?}_cats`".$whereSta
 
 // Are there entries?
 if (!SQL_HASZERONUMS($result)) {
-       $LEAST = false;
+       $LEAST = FALSE;
        if (isFormSent()) {
                $count = '0';
                foreach (postRequestElement('cat') as $categoryId => $joined) {
@@ -62,7 +62,7 @@ if (!SQL_HASZERONUMS($result)) {
 
                if ((SQL_NUMROWS($result) - $count) < getLeastCats()) {
                        unsetPostRequestElement('ok');
-                       $LEAST = true;
+                       $LEAST = TRUE;
                } // END - if
        } // END - if
 
@@ -80,7 +80,7 @@ if (!SQL_HASZERONUMS($result)) {
                        switch ($joined) {
                                case 'Y':
                                        // Check if this category has an entry
-                                       if (countSumTotalData(getMemberId(), 'user_cats', 'id', 'userid', true, sprintf(" AND `cat_id`=%s", bigintval($categoryId))) == 0) {
+                                       if (countSumTotalData(getMemberId(), 'user_cats', 'id', 'userid', TRUE, sprintf(" AND `cat_id`=%s", bigintval($categoryId))) == 0) {
                                                // No, so add it
                                                addSql(sprintf("INSERT INTO `{?_MYSQL_PREFIX?}_user_cats` (`userid`, `cat_id`) VALUES (%s,%s)", getMemberId(), bigintval($categoryId)));
                                        } // END - if
@@ -107,7 +107,7 @@ if (!SQL_HASZERONUMS($result)) {
                        displayMessage('{--MEMBER_CATEGORIES_NOT_SAVED--}');
                }
        } else {
-               if ($LEAST === true) {
+               if ($LEAST === TRUE) {
                        // Also here we have to secure it... :(
                        displayMessage('{--CHOOSE_MORE_CATEGORIES--}');
                } // END - if
@@ -128,21 +128,21 @@ if (!SQL_HASZERONUMS($result)) {
                                } // END - if
                        } else {
                                // Check if he has an entry
-                               if (countSumTotalData(getMemberId(), '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"';
                                } // END - if
                        }
 
                        // Load row template
-                       $OUT .= loadTemplate('member_cats_row', true, $content);
+                       $OUT .= loadTemplate('member_cats_row', TRUE, $content);
                } // END - while
 
                // Free result
                SQL_FREERESULT($result);
 
                // Load footer template
-               loadTemplate('member_cats', false, $OUT);
+               loadTemplate('member_cats', FALSE, $OUT);
        }
 } else {
        // No cateogries are defined yet