diff options
author | Dries Buytaert <dries@buytaert.net> | 2001-02-22 16:46:01 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2001-02-22 16:46:01 +0000 |
commit | 0505e7b999d4700493d06de0aec810eb3b080a45 (patch) | |
tree | 80f3e1b2b2c5df829e1b90be7d3b73db3d06b9fd | |
parent | a66fb3a902d62a18c60711b4bdd65610468dc787 (diff) | |
download | brdo-0505e7b999d4700493d06de0aec810eb3b080a45.tar.gz brdo-0505e7b999d4700493d06de0aec810eb3b080a45.tar.bz2 |
- removed one redundant "."
-rw-r--r-- | account.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/account.php b/account.php index 6178f9477..5b8a1805e 100644 --- a/account.php +++ b/account.php @@ -290,7 +290,7 @@ function account_validate($user) { // Check to see whether the username or e-mail address are banned: if ($ban = ban_match($user[userid], $type2index[usernames])) $error = t("the specified username is banned") .": <I>$ban->reason</I>"; - if ($ban = ban_match($user[real_email], $type2index[addresses])) $error = t("the specified e-mail address is banned") .": <I>$ban->reason</I>."; + if ($ban = ban_match($user[real_email], $type2index[addresses])) $error = t("the specified e-mail address is banned") .": <I>$ban->reason</I>"; // Verify whether username and e-mail address are unique: if (db_num_rows(db_query("SELECT userid FROM users WHERE LOWER(userid) = LOWER('$user[userid]')")) > 0) $error = t("the specified username is already taken"); |