Changeset 3782

Show
Ignore:
Timestamp:
05/18/06 01:23:25 (3 years ago)
Author:
ryan
Message:

Apply bloginfo_rss filter.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/wp-includes/feed-functions.php

    r3314 r3782  
    33function get_bloginfo_rss($show = '') { 
    44    $info = strip_tags(get_bloginfo($show)); 
    5     return convert_chars($info); 
     5    return apply_filters('bloginfo_rss', convert_chars($info)); 
    66} 
    77