Changes from branches/3.4/wp-admin/includes/meta-boxes.php at r21108 to trunk/wp-admin/includes/meta-boxes.php at r20896
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/meta-boxes.php
r21108 r20896 484 484 echo '<p id="no-comments">' . __('No comments yet.') . '</p>'; 485 485 } else { 486 $hidden = get_hidden_meta_boxes( get_current_screen());486 $hidden = get_hidden_meta_boxes('post'); 487 487 if ( ! in_array('commentsdiv', $hidden) ) { 488 488 ?> … … 490 490 <?php 491 491 } 492 493 ?>494 <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> <img class="waiting" style="display:none;" src="<?php echo esc_url( admin_url( 'images/wpspin_light.gif' ) ); ?>" alt="" /></p>495 <?php496 492 } 493 494 ?> 495 <p class="hide-if-no-js hidden" id="show-comments"><a href="#commentstatusdiv" onclick="commentsBox.get(<?php echo $total; ?>);return false;"><?php _e('Show comments'); ?></a> <img class="waiting" style="display:none;" src="<?php echo esc_url( admin_url( 'images/wpspin_light.gif' ) ); ?>" alt="" /></p> 496 <?php 497 497 498 498 wp_comment_trashnotice();
Note: See TracChangeset
for help on using the changeset viewer.