Ticket #3595: bookmark-template-php-NEW.diff
File bookmark-template-php-NEW.diff, 1.1 KB (added by , 18 years ago) |
---|
-
E:/EclipseWork/WordPressDev/wp-includes/bookmark-template.php
96 96 if ( '' != $rel ) 97 97 $rel = ' rel="' . $rel . '"'; 98 98 99 $desc = attribute_escape( $row->link_description);100 $name = attribute_escape( $row->link_name);99 $desc = attribute_escape(apply_filters('link_description', $row->link_description)); 100 $name = attribute_escape(apply_filters('link_title', $row->link_name)); 101 101 $title = $desc; 102 102 103 103 if ( $show_updated ) … … 229 229 // Handle each category. 230 230 231 231 // Display the category name 232 echo ' <li id="linkcat-' . $cat->term_id . '" class="linkcat"><h2>' . $cat->name . "</h2>\n\t<ul>\n"; 232 $catname = apply_filters('link_category', $cat->name); 233 echo ' <li id="linkcat-' . $cat->term_ID . '" class="linkcat"><h2>' . $catname . "</h2>\n\t<ul>\n"; 233 234 // Call get_links() with all the appropriate params 234 235 get_links($cat->term_id, '<li>', "</li>", "\n", true, 'name', false); 235 236