X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Flibs%2Fnickname_functions.php;h=9d501390db43c0b198cf7d23ba583d1b0d53ceab;hb=4cf6094cc3cbebfda691fa797e00fe674bbb329c;hp=a75b9d75b2b574968e1907d957578d2f0eda44da;hpb=e2148142f8b1a8f40fd6e7ca32185569c5a9083e;p=mailer.git diff --git a/inc/libs/nickname_functions.php b/inc/libs/nickname_functions.php index a75b9d75b2..9d501390db 100644 --- a/inc/libs/nickname_functions.php +++ b/inc/libs/nickname_functions.php @@ -14,11 +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 * - * For more information visit: http://www.mxchange.org * + * Copyright (c) 2009 - 2011 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 * @@ -39,7 +38,7 @@ // Some security stuff... if (!defined('__SECURITY')) { die(); -} +} // END - if // Checks wether the nickname is active function isNicknameOrUserid ($useridNick) { @@ -50,7 +49,7 @@ function isNicknameOrUserid ($useridNick) { 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); @@ -79,7 +78,7 @@ function getNickname ($userid) { $result = false; // Nickname or userid used? - if (''.round($userid).'' === ''.$userid.'') { + if ('' . round($userid) . '' === '' . $userid . '') { // Userid given, so try to load user data if (fetchUserData($userid)) { // Load nickname from database @@ -89,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