Changeset 34069
- Timestamp:
- 09/12/2015 02:27:50 AM (9 years ago)
- Location:
- trunk/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/meta-boxes.php
r33686 r34069 691 691 692 692 ?> 693 <p class="hide-if-no-js" id="show-comments"><a href="#commentstatusdiv" onclick="commentsBox. get(<?php echo $total; ?>);return false;"><?php _e('Show comments'); ?></a> <span class="spinner"></span></p>693 <p class="hide-if-no-js" id="show-comments"><a href="#commentstatusdiv" onclick="commentsBox.load(<?php echo $total; ?>);return false;"><?php _e('Show comments'); ?></a> <span class="spinner"></span></p> 694 694 <?php 695 695 } -
trunk/src/wp-admin/js/post.js
r33836 r34069 60 60 61 61 return false; 62 }, 63 64 load: function(total){ 65 this.st = jQuery('#the-comment-list tr.comment:visible').length; 66 this.get(total); 62 67 } 63 68 }; -
trunk/src/wp-includes/comment-template.php
r34039 r34069 854 854 $comment = get_comment( $comment_ID ); 855 855 856 $comment_text = get_comment_text( $comment _ID, $args );856 $comment_text = get_comment_text( $comment, $args ); 857 857 /** 858 858 * Filter the text of a comment to be displayed.
Note: See TracChangeset
for help on using the changeset viewer.