X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Flibs%2Fnickname_functions.php;h=f66ade8e1c0227a7d578b3ef5ac1cbbfa4fa0b92;hb=f888a0bda52e7dd2ea799837ed2991c263864e9f;hp=1e8084013b5bda6e6476dfc21549da236ffea576;hpb=63f159414369b5ea19a8ca75d8cd8033c45d8341;p=mailer.git diff --git a/inc/libs/nickname_functions.php b/inc/libs/nickname_functions.php index 1e8084013b..f66ade8e1c 100644 --- a/inc/libs/nickname_functions.php +++ b/inc/libs/nickname_functions.php @@ -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