git-svn-id: https://develop.svn.wordpress.org/trunk@2246 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Matt Mullenweg 2005-02-11 00:55:01 +00:00
parent 76d536c1fe
commit 64701e362c
1 changed files with 1 additions and 1 deletions

View File

@ -489,7 +489,7 @@ function make_clickable($ret) {
}
function wp_rel_nofollow( $text ) {
$text = preg_replace('|<a(.+?)>|i', '<a$1 rel="nofollow">', $text);
$text = preg_replace('|<a (.+?)>|i', '<a $1 rel="nofollow">', $text);
return $text;
}