From 02db3ad66bb2ae5f944f865684061c1d566a5729 Mon Sep 17 00:00:00 2001 From: rboren Date: Tue, 2 Nov 2004 02:13:00 +0000 Subject: [PATCH] Typo fix. Bug 423. git-svn-id: http://svn.automattic.com/wordpress/trunk@1843 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/functions.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/functions.php b/wp-includes/functions.php index bace8d65ee..a780cb770b 100644 --- a/wp-includes/functions.php +++ b/wp-includes/functions.php @@ -1673,7 +1673,7 @@ function check_comment($author, $email, $url, $comment, $user_ip) { if ( preg_match($pattern, $url) ) return false; if ( preg_match($pattern, $comment) ) return false; if ( preg_match($pattern, $user_ip) ) return false; - if ( preg_match($pattern, $useg_agent) ) return false; + if ( preg_match($pattern, $user_agent) ) return false; } return true;