RCS file: /cvsroot/cafelog/wordpress/wp-includes/comment-functions.php,v
retrieving revision 1.29
diff -u -r1.29 comment-functions.php
|
|
|
87 | 87 | echo $javascript; |
88 | 88 | } |
89 | 89 | |
90 | | function comments_popup_link($zero='No Comments', $one='1 Comment', $more='% Comments', $CSSclass='', $none='Comments Off') { |
| 90 | function comments_popup_link($zero='No Comments', $one='1 Comment', $more='% Comments', $CSSclass='', $none='Comments Off', $title) { |
91 | 91 | global $id, $wpcommentspopupfile, $wpcommentsjavascript, $post, $wpdb; |
92 | 92 | global $comment_count_cache; |
93 | 93 | |
… |
… |
|
123 | 123 | if (!empty($CSSclass)) { |
124 | 124 | echo ' class="'.$CSSclass.'"'; |
125 | 125 | } |
| 126 | if (!empty($title)) { |
| 127 | echo ' title="'.$title.'"'; |
| 128 | } |
126 | 129 | echo '>'; |
127 | 130 | comments_number($zero, $one, $more, $number); |
128 | 131 | echo '</a>'; |