Changeset 27609
- Timestamp:
- 03/19/2014 05:37:27 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3.8/src/wp-admin/includes/ajax-actions.php
r26793 r27609 1481 1481 wp_die( __('No items found.') ); 1482 1482 1483 $html = '<table class="widefat" cellspacing="0"><thead><tr><th class="found-radio"><br /></th><th>'.__('Title').'</th><th class="no-break">'.__('Type').'</th><th class="no-break">'.__('Date').'</th><th class="no-break">'.__('Status').'</th></tr></thead><tbody>'; 1483 $html = '<table class="widefat" cellspacing="0"><thead><tr><th class="found-radio"><br /></th><th>' . __( 'Title' ); 1484 $html .= '</th><th class="no-break">' . _x( 'Type', 'type of attachment parent' ) . '</th><th class="no-break">'; 1485 $html .= __( 'Date' ). '</th><th class="no-break">' . __( 'Status' ) . '</th></tr></thead><tbody>'; 1486 1484 1487 foreach ( $posts as $post ) { 1485 1488 $title = trim( $post->post_title ) ? $post->post_title : __( '(no title)' );
Note: See TracChangeset
for help on using the changeset viewer.