git-svn-id: http://svn.automattic.com/wordpress/trunk@2246 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
saxmatt 2005-02-11 00:55:01 +00:00
parent 695b6499d0
commit 6f8ab483d8
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;
}