Changeset 3994
- Timestamp:
- 07/06/06 02:27:53 (3 years ago)
- Files:
-
- branches/2.0/wp-includes/comment-functions.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/2.0/wp-includes/comment-functions.php
r3993 r3994 316 316 echo ' class="'.$CSSclass.'"'; 317 317 } 318 $title = wp_specialchars(apply_filters('the_title', get_the_title()) );319 echo ' title="' . sprintf( __('Comment on %s'), wp_specialchars($title, 'double')) .'">';318 $title = wp_specialchars(apply_filters('the_title', get_the_title()), true); 319 echo ' title="' . sprintf( __('Comment on %s'), $title ) .'">'; 320 320 comments_number($zero, $one, $more, $number); 321 321 echo '</a>';
