X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=inc%2Fmodules%2Fmember%2Fwhat-nickname.php;h=294973e4ce7dfc3f99f85aa4805cce3830ea7259;hb=968b5160ae624519f1a9491f00e0aeadf25729fb;hp=c69d7eec520b23f2e181aa68da2c6f93926d6e1a;hpb=0fe94791af05018868398d3c6c87d2b16f9557a2;p=mailer.git diff --git a/inc/modules/member/what-nickname.php b/inc/modules/member/what-nickname.php index c69d7eec52..294973e4ce 100644 --- a/inc/modules/member/what-nickname.php +++ b/inc/modules/member/what-nickname.php @@ -18,6 +18,7 @@ * 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 * * * * This program is free software; you can redistribute it and/or modify * @@ -58,7 +59,7 @@ if (isFormSent()) { if (isPostRequestParameterSet('nickname')) { // Check if nickname is valid $PATTERN = '[' . getConfig('nickname_pattern') . ']{' . getConfig('nickname_len') . ',}'; - if (ereg($PATTERN, postRequestParameter('nickname'), $array)) { + if (isInString($PATTERN, postRequestParameter('nickname'), $array)) { // Entered nickname is valid? $isValid = ($array[0] == postRequestParameter('nickname')); } // END - if @@ -69,17 +70,17 @@ if ($isValid === true) { // Look for nickname in database (we only need just one entry so don't worry about the "LIMIT 1" !) $result = SQL_QUERY_ESC("SELECT `userid` FROM `{?_MYSQL_PREFIX?}_user_data` WHERE `nickname`='%s' AND `userid` != '%s' LIMIT 1", array(postRequestParameter('nickname'), getMemberId()), __FILE__, __LINE__); - if (SQL_NUMROWS($result) == '0') { + if (SQL_HASZERONUMS($result)) { // Nickname not in use, so set it now SQL_QUERY_ESC("UPDATE `{?_MYSQL_PREFIX?}_user_data` SET `nickname`='%s' WHERE `userid`=%s LIMIT 1", array(postRequestParameter('nickname'), getMemberId()), __FILE__, __LINE__); - $content = getMessage('NICKNAME_SAVED'); + $content = '{--NICKNAME_SAVED--}'; } else { // Free result SQL_FREERESULT($result); // Nickname already in use! - $content = getMessage('NICKNAME_ALREADY_IN_USE'); + $content = '{--NICKNAME_ALREADY_IN_USE--}'; } // Load template