Changeset 11013 for trunk/wp-includes/comment-template.php
- Timestamp:
- 04/20/2009 06:18:39 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/comment-template.php
r11011 r11013 909 909 function comments_popup_link( $zero = false, $one = false, $more = false, $css_class = '', $none = false ) { 910 910 global $id, $wpcommentspopupfile, $wpcommentsjavascript, $post; 911 911 912 912 if ( false === $zero ) $zero = __( 'No Comments' ); 913 913 if ( false === $one ) $one = __( '1 Comment' ); 914 914 if ( false === $more ) $more = __( '% Comments' ); 915 915 if ( false === $none ) $none = __( 'Comments Off' ); 916 916 917 917 $number = get_comments_number( $id ); 918 918 … … 1116 1116 function comment_form_title( $noreplytext = false, $replytext = false, $linktoparent = TRUE ) { 1117 1117 global $comment; 1118 1118 1119 1119 if ( false === $noreplytext ) $noreplytext = __( 'Leave a Reply' ); 1120 1120 if ( false === $replytext ) $replytext = __( 'Leave a Reply to %s' );
Note: See TracChangeset
for help on using the changeset viewer.