X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Flibs%2Fnickname_functions.php;h=91f88510898146220c297231c5e4a18efaf81cf9;hb=15e0995f7a4a4b2c9b1b1a9273f785cf13605829;hp=1862bc873feef33764f323a922bf8e085d69399a;hpb=09f5758c42a33a56bdd461c946ffe759a59c54aa;p=mailer.git diff --git a/inc/libs/nickname_functions.php b/inc/libs/nickname_functions.php index 1862bc873f..91f8851089 100644 --- a/inc/libs/nickname_functions.php +++ b/inc/libs/nickname_functions.php @@ -14,12 +14,10 @@ * $Date:: $ * * $Tag:: 0.2.1-FINAL $ * * $Author:: $ * - * Needs to be in all Files and every File needs "svn propset * - * svn:keywords Date Revision" (autoprobset!) at least!!!!!! * * -------------------------------------------------------------------- * * Copyright (c) 2003 - 2009 by Roland Haeder * - * Copyright (c) 2009, 2010 by Mailer Developer Team * - * For more information visit: http://www.mxchange.org * + * Copyright (c) 2009 - 2013 by Mailer Developer Team * + * For more information visit: http://mxchange.org * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * @@ -40,18 +38,18 @@ // Some security stuff... if (!defined('__SECURITY')) { die(); -} +} // END - if -// Checks wether the nickname is active +// 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])) { // Use it directly $ret = $GLOBALS['nickname_active'][$useridNick]; - } else { + } elseif ((!empty($useridNick)) && ($useridNick != '0')) { // Nickname or userid used? $nick = getNickname($useridNick); @@ -77,10 +75,10 @@ function getNickname ($userid) { $ret = $GLOBALS['nicknames'][$userid]; } else { // Init result - $result = false; + $result = FALSE; // Nickname or userid used? - if ('' . round($userid) . '' === '' . $userid . '') { + if ('' . bigintval($userid, TRUE, FALSE) . '' === '' . $userid . '') { // Userid given, so try to load user data if (fetchUserData($userid)) { // Load nickname from database @@ -90,7 +88,7 @@ function getNickname ($userid) { $GLOBALS['nicknames'][$userid] = $ret; } // END - if } else { - // Direct nickname found! + // Direct nickname found $ret = $userid; // Put it in cche