Changeset 13100
- Timestamp:
- 02/13/2010 08:49:27 AM (15 years ago)
- Location:
- trunk/wp-admin
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/edit-comments.php
r12789 r13100 193 193 194 194 foreach ( $stati as $status => $label ) { 195 $class = ''; 196 197 if ( $status == $comment_status ) 198 $class = ' class="current"'; 195 $class = ( $status == $comment_status ) ? ' class="current"' : ''; 196 199 197 if ( !isset( $num_comments->$status ) ) 200 198 $num_comments->$status = 10; 199 if ( empty( $num_comments->$status ) ) 200 continue; 201 201 $link = add_query_arg( 'comment_status', $status, $link ); 202 202 if ( $post_id ) … … 271 271 <div class="tablenav"> 272 272 273 <?php if ( $comments ) { ?> 273 274 <?php if ( $page_links ) : ?> 274 275 <div class="tablenav-pages"><?php $page_links_text = sprintf( '<span class="displaying-num">' . __( 'Displaying %s–%s of %s' ) . '</span>%s', … … 347 348 <div class="clear"></div> 348 349 349 <?php if ( $comments ) { ?>350 350 <table class="widefat comments fixed" cellspacing="0"> 351 351 <thead> … … 437 437 438 438 <?php } else { ?> 439 <p><?php _e('No results found.') ?></p>439 <p><?php _e('No comments found.') ?></p> 440 440 </form> 441 441 -
trunk/wp-admin/edit.php
r12994 r13100 400 400 <p><?php 401 401 if ( isset($_GET['post_status']) && 'trash' == $_GET['post_status'] ) 402 _e( 'No posts found in the trash');402 _e( 'No posts found in the Trash.' ); 403 403 else 404 _e( 'No posts found');404 _e( 'No posts found.' ); 405 405 ?></p> 406 406 <?php } ?> -
trunk/wp-admin/link-manager.php
r12895 r13100 100 100 <div class="tablenav"> 101 101 102 <?php 103 if ( 'all' == $cat_id ) 104 $cat_id = ''; 105 $args = array( 'category' => $cat_id, 'hide_invisible' => 0, 'orderby' => $sqlorderby, 'hide_empty' => 0 ); 106 if ( ! empty( $_GET['s'] ) ) 107 $args['search'] = $_GET['s']; 108 $links = get_bookmarks( $args ); 109 if ( $links ) { 110 ?> 111 102 112 <div class="alignleft actions"> 103 113 <select name="action"> … … 136 146 137 147 <?php 138 if ( 'all' == $cat_id )139 $cat_id = '';140 $args = array('category' => $cat_id, 'hide_invisible' => 0, 'orderby' => $sqlorderby, 'hide_empty' => 0);141 if ( !empty($_GET['s']) )142 $args['search'] = $_GET['s'];143 $links = get_bookmarks( $args );144 if ( $links ) {145 148 $link_columns = get_column_headers('link-manager'); 146 149 $hidden = get_hidden_columns('link-manager'); … … 252 255 </table> 253 256 254 <?php } else { ?>255 <p><?php _e('No links found.') ?></p>256 <?php } ?>257 258 257 <div class="tablenav"> 259 258 … … 266 265 </div> 267 266 267 <?php } else { ?> 268 <p><?php _e( 'No links found.' ) ?></p> 269 <?php } ?> 270 268 271 <br class="clear" /> 269 272 </div> -
trunk/wp-admin/plugins.php
r12996 r13100 634 634 </ul> 635 635 636 <?php if ( ! empty( $plugins ) ) { ?> 637 636 638 <div class="tablenav"> 637 639 <?php … … 657 659 ?> 658 660 </div> 661 <?php } elseif ( ! empty( $all_plugins ) ) { ?> 662 <p><?php __( 'No plugins found.' ); ?></p> 663 <?php } ?> 659 664 </form> 660 665 661 666 <?php if ( empty($all_plugins) ) : ?> 667 <br class="clear" /> 662 668 <p><?php _e('You do not appear to have any plugins available at this time.') ?></p> 663 669 <?php endif; ?> -
trunk/wp-admin/upload.php
r12972 r13100 144 144 $start = ( (int) $_GET['paged'] - 1 ) * $media_per_page; 145 145 $orphans = $wpdb->get_results( $wpdb->prepare( "SELECT SQL_CALC_FOUND_ROWS * FROM $wpdb->posts WHERE post_type = 'attachment' AND post_status != 'trash' AND post_parent < 1 LIMIT %d, %d", $start, $media_per_page ) ); 146 $page_links_total = ceil($wpdb->get_var( "SELECT FOUND_ROWS()" ) / $media_per_page); 146 $total_orphans = $wpdb->get_var( "SELECT FOUND_ROWS()" ); 147 $page_links_total = ceil( $total_orphans / $media_per_page ); 147 148 } 148 149 … … 220 221 $_num_posts = (array) wp_count_attachments(); 221 222 $_total_posts = array_sum($_num_posts) - $_num_posts['trash']; 223 if ( !isset( $total_orphans ) ) 224 $total_orphans = $wpdb->get_var( "SELECT COUNT( * ) FROM $wpdb->posts WHERE post_type = 'attachment' AND post_status != 'trash' AND post_parent < 1" ); 222 225 $matches = wp_match_mime_types(array_keys($post_mime_types), array_keys($_num_posts)); 223 226 foreach ( $matches as $type => $reals ) … … 235 238 if ( !empty($_GET['post_mime_type']) && wp_match_mime_types($mime_type, $_GET['post_mime_type']) ) 236 239 $class = ' class="current"'; 237 238 $type_links[] = "<li><a href='upload.php?post_mime_type=$mime_type'$class>" . sprintf( _n( $label[2][0], $label[2][1], $num_posts[$mime_type] ), number_format_i18n( $num_posts[$mime_type] )) . '</a>'; 239 } 240 $type_links[] = '<li><a href="upload.php?detached=1"' . ( isset($_GET['detached']) ? ' class="current"' : '' ) . '>' . __('Unattached') . '</a>'; 241 if ( EMPTY_TRASH_DAYS && ( MEDIA_TRASH || !empty($_num_posts['trash']) ) ) 240 if ( !empty( $num_posts[$mime_type] ) ) 241 $type_links[] = "<li><a href='upload.php?post_mime_type=$mime_type'$class>" . sprintf( _n( $label[2][0], $label[2][1], $num_posts[$mime_type] ), number_format_i18n( $num_posts[$mime_type] )) . '</a>'; 242 } 243 $type_links[] = '<li><a href="upload.php?detached=1"' . ( isset($_GET['detached']) ? ' class="current"' : '' ) . '>' . sprintf( _nx( 'Unattached <span class="count">(%s)</span>', 'Unattached <span class="count">(%s)</span>', $total_orphans, 'detached files' ), number_format_i18n( $total_orphans ) ) . '</a>'; 244 245 if ( !empty($_num_posts['trash']) ) 242 246 $type_links[] = '<li><a href="upload.php?status=trash"' . ( (isset($_GET['status']) && $_GET['status'] == 'trash' ) ? ' class="current"' : '') . '>' . sprintf( _nx( 'Trash <span class="count">(%s)</span>', 'Trash <span class="count">(%s)</span>', $_num_posts['trash'], 'uploaded files' ), number_format_i18n( $_num_posts['trash'] ) ) . '</a>'; 243 247 … … 256 260 257 261 <form id="posts-filter" action="" method="get"> 262 <?php if ( have_posts() || isset( $orphans ) ) { ?> 258 263 <div class="tablenav"> 259 264 <?php … … 280 285 281 286 <div class="alignleft actions"> 287 <?php if ( ! isset( $orphans ) || ! empty( $orphans ) ) { ?> 282 288 <select name="action" class="select-action"> 283 289 <option value="-1" selected="selected"><?php _e('Bulk Actions'); ?></option> … … 329 335 <?php } // ! is_singular ?> 330 336 331 <?php if ( isset($_GET['detached']) ) { ?> 337 <?php 338 339 } // ! empty( $orphans ) 340 341 if ( isset($_GET['detached']) ) { ?> 332 342 <input type="submit" id="find_detached" name="find_detached" value="<?php esc_attr_e('Scan for lost attachments'); ?>" class="button-secondary" /> 333 343 <?php } elseif ( isset($_GET['status']) && $_GET['status'] == 'trash' && current_user_can('edit_others_posts') ) { ?> … … 340 350 </div> 341 351 352 <?php } // have_posts() || !empty( $orphans ) ?> 353 342 354 <div class="clear"></div> 343 355 344 <?php if ( isset($orphans) ) { ?>356 <?php if ( ! empty( $orphans ) ) { ?> 345 357 <table class="widefat" cellspacing="0"> 346 358 <thead> … … 366 378 <tbody id="the-list" class="list:post"> 367 379 <?php 368 if ( $orphans ) {369 380 foreach ( $orphans as $post ) { 370 381 $class = 'alternate' == $class ? '' : 'alternate'; … … 424 435 <td class="date column-date"><?php echo $h_time ?></td> 425 436 </tr> 426 <?php } 427 428 } else { ?> 429 <tr><td colspan="5"><?php _e('No media attachments found.') ?></td></tr> 430 <?php } ?> 437 <?php } ?> 431 438 </tbody> 432 439 </table> … … 443 450 444 451 <?php 452 if ( have_posts() || ! empty( $orphans ) ) { 453 445 454 if ( $page_links ) 446 455 echo "<div class='tablenav-pages'>$page_links_text</div>"; … … 467 476 </div> 468 477 478 <?php } ?> 469 479 <br class="clear" /> 470 480 </div>
Note: See TracChangeset
for help on using the changeset viewer.