Changeset 9980 for trunk/wp-admin/edit-attachment-rows.php
- Timestamp:
- 11/30/2008 01:17:27 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/edit-attachment-rows.php
r9878 r9980 8 8 9 9 if ( ! defined('ABSPATH') ) die(); 10 ?> 10 11 if ( have_posts() ) { ?> 11 12 <table class="widefat fixed" cellspacing="0"> 12 13 <thead> … … 24 25 <tbody id="the-list" class="list:post"> 25 26 <?php 26 if ( have_posts() ) {27 27 add_filter('the_title','wp_specialchars'); 28 28 $alt = ''; … … 196 196 ?> 197 197 </tr> 198 <?php 199 endwhile; 200 } else { 201 ?> 202 <tr> 203 <td colspan="8"><?php _e('No posts found.') ?></td> 204 </tr> 205 <?php 206 } // end if ( have_posts() ) 207 ?> 198 <?php endwhile; ?> 208 199 </tbody> 209 200 </table> 201 <?php } else { ?> 202 203 <p><?php _e('No posts found.') ?></p> 204 205 <?php 206 } // end if ( have_posts() ) 207 ?> 208
Note: See TracChangeset
for help on using the changeset viewer.