From: Roland Häder Date: Mon, 17 Aug 2009 17:54:08 +0000 (+0000) Subject: Another try... :( X-Git-Url: https://git.mxchange.org/?p=mailer.git;a=commitdiff_plain;h=d6a90966963c2c4449a37f1870e5e3798c79fe00 Another try... :( --- diff --git a/inc/libs/nickname_functions.php b/inc/libs/nickname_functions.php index f985f52086..f3e258bb4a 100644 --- a/inc/libs/nickname_functions.php +++ b/inc/libs/nickname_functions.php @@ -59,7 +59,7 @@ function NICKNAME_IS_ACTIVE ($uidNick) { $result = false; // Nickname or userid used? - if (round($uidNick) == $uidNick) { + if (''.round($uidNick).'' === ''.$uidNick.'') { // Userid given $result = SQL_QUERY_ESC("SELECT `userid` FROM `{!_MYSQL_PREFIX!}_user_data` WHERE `userid` =%s LIMIT 1", array(bigintval($uidNick)), __FUNCTION__, __LINE__);