From 0505e7b999d4700493d06de0aec810eb3b080a45 Mon Sep 17 00:00:00 2001
From: Dries Buytaert <dries@buytaert.net>
Date: Thu, 22 Feb 2001 16:46:01 +0000
Subject: [PATCH] - removed one redundant "."

---
 account.php | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/account.php b/account.php
index 6178f947732a..5b8a1805e3b0 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");
-- 
GitLab