Ticket #4051: filter_blogroll.patch
| File filter_blogroll.patch, 940 bytes (added by , 17 years ago) |
|---|
-
bookmark-template.php
70 70 71 71 $the_link = '#'; 72 72 if ( !empty($bookmark->link_url) ) 73 $the_link = clean_url($bookmark->link_url);73 $the_link = apply_filters('bookmark_url',$bookmark->link_url); 74 74 75 75 $rel = $bookmark->link_rel; 76 76 if ( '' != $rel ) -
default-filters.php
159 159 add_filter( 'comments_open', '_close_comments_for_old_post', 10, 2 ); 160 160 add_filter( 'pings_open', '_close_comments_for_old_post', 10, 2 ); 161 161 add_filter( 'editable_slug', 'urldecode' ); 162 add_filter('bookmark_url','clean_url'); 162 163 163 164 // Atom SSL support 164 165 add_filter('atom_service_url','atom_service_url_filter');