Apply the bloginfo_rss filter and change bloginfo_rss filter to get_bloginfo. Props Kafkaesqui. fixes #2014

git-svn-id: http://svn.automattic.com/wordpress/trunk@5134 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
rob1n 2007-03-29 01:35:50 +00:00
parent b4de51f25c
commit e5b562a070
1 changed files with 2 additions and 2 deletions

View File

@ -2,12 +2,12 @@
function get_bloginfo_rss($show = '') {
$info = strip_tags(get_bloginfo($show));
return apply_filters('bloginfo_rss', convert_chars($info));
return apply_filters('get_bloginfo_rss', convert_chars($info));
}
function bloginfo_rss($show = '') {
echo get_bloginfo_rss($show);
echo apply_filters('bloginfo_rss', get_bloginfo_rss($show));
}
function get_wp_title_rss($sep = '»') {