Code style changed, ext-user continued:
[mailer.git] / inc / libs / nickname_functions.php
index 1e8084013b5bda6e6476dfc21549da236ffea576..f66ade8e1c0227a7d578b3ef5ac1cbbfa4fa0b92 100644 (file)
@@ -43,7 +43,7 @@ if (!defined('__SECURITY')) {
 // Checks whether the nickname is active
 function isNicknameOrUserid ($useridNick) {
        // By default nothing is found...
-       $ret = false;
+       $ret = FALSE;
 
        // Found in cache?
        if (isset($GLOBALS['nickname_active'][$useridNick])) {
@@ -75,10 +75,10 @@ function getNickname ($userid) {
                $ret = $GLOBALS['nicknames'][$userid];
        } else {
                // Init result
-               $result = false;
+               $result = FALSE;
 
                // Nickname or userid used?
-               if ('' . bigintval($userid, true, false) . '' === '' . $userid . '') {
+               if ('' . bigintval($userid, TRUE, FALSE) . '' === '' . $userid . '') {
                        // Userid given, so try to load user data
                        if (fetchUserData($userid)) {
                                // Load nickname from database