Ticket #16688: changes.diff
| File changes.diff, 1.0 KB (added by , 15 years ago) |
|---|
-
comment.php
1706 1706 $excerpt = str_replace(']]>', ']]>', $excerpt); 1707 1707 $excerpt = wp_html_excerpt($excerpt, 252) . '...'; 1708 1708 1709 $post_title = apply_filters('the_title', $post->post_title );1709 $post_title = apply_filters('the_title', $post->post_title, $post->ID); 1710 1710 $post_title = strip_tags($post_title); 1711 1711 1712 1712 if ( $to_ping ) { -
general-template.php
1033 1033 $url = get_permalink($arcresult); 1034 1034 $arc_title = $arcresult->post_title; 1035 1035 if ( $arc_title ) 1036 $text = strip_tags(apply_filters('the_title', $arc_title ));1036 $text = strip_tags(apply_filters('the_title', $arc_title, $arcresult->ID)); 1037 1037 else 1038 1038 $text = $arcresult->ID; 1039 1039 $output .= get_archives_link($url, $text, $format, $before, $after);