]> git.mxchange.org Git - mailer.git/blobdiff - inc/modules/member/what-nickname.php
More rewrites/templates swapped out:
[mailer.git] / inc / modules / member / what-nickname.php
index bd40a66b78226519a2e7ca046fc8763ca36c9b02..7a9e7b511447e4500b7b0f879c56f1101be9f766 100644 (file)
@@ -70,7 +70,7 @@ 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__);