From 3a07d77b03d5470a27fe409390674bb4a5b097df Mon Sep 17 00:00:00 2001 From: "Paul S. Owen" Date: Sat, 21 Dec 2002 12:56:07 +0000 Subject: [PATCH] missing ; git-svn-id: file:///svn/phpbb/branches/phpBB-2_0_0@3220 89ea8834-ac86-4346-8a33-228a782c2dd0 --- phpBB/includes/functions_validate.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpBB/includes/functions_validate.php b/phpBB/includes/functions_validate.php index 6ad6bf1735..c76d7303c3 100644 --- a/phpBB/includes/functions_validate.php +++ b/phpBB/includes/functions_validate.php @@ -134,7 +134,7 @@ function validate_email($email) return array('error' => true, 'error_msg' => $lang['Email_banned']); } } - while($row = $db->sql_fetchrow($result)) + while($row = $db->sql_fetchrow($result)); } } $db->sql_freeresult($result);