From 64701e362c49b93a4d01167ac47f85c7b954b9b4 Mon Sep 17 00:00:00 2001 From: Matt Mullenweg Date: Fri, 11 Feb 2005 00:55:01 +0000 Subject: [PATCH] When good regex goes bad - http://mosquito.wordpress.org/view.php?id=851 git-svn-id: https://develop.svn.wordpress.org/trunk@2246 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/functions-formatting.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/functions-formatting.php b/wp-includes/functions-formatting.php index 311d293df0..d0ba110e14 100644 --- a/wp-includes/functions-formatting.php +++ b/wp-includes/functions-formatting.php @@ -489,7 +489,7 @@ function make_clickable($ret) { } function wp_rel_nofollow( $text ) { - $text = preg_replace('||i', '', $text); + $text = preg_replace('||i', '', $text); return $text; }