Changeset 9891
- Timestamp:
- 11/26/2008 12:36:25 AM (17 years ago)
- Location:
- trunk/wp-admin
- Files:
-
- 3 edited
-
edit-pages.php (modified) (4 diffs)
-
edit-post-rows.php (modified) (1 diff)
-
edit.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/edit-pages.php
r9887 r9891 166 166 <?php endif; ?> 167 167 168 <?php if ($posts) { ?> 169 168 170 <div class="tablenav"> 169 171 … … 209 211 <div class="clear"></div> 210 212 211 <?php212 213 if ($posts) {214 ?>215 213 <table class="widefat page fixed" cellspacing="0"> 216 214 <thead> … … 249 247 </div> 250 248 249 <?php } else { ?> 250 <div class="clear"></div> 251 <p><?php _e('No pages found.') ?></p> 252 <?php 253 } // end if ($posts) 254 ?> 255 251 256 </form> 252 257 … … 254 259 255 260 <div id="ajax-response"></div> 256 257 <?php258 } else {259 ?>260 </form>261 <p><?php _e('No pages found.') ?></p>262 <?php263 } // end if ($posts)264 ?>265 261 266 262 -
trunk/wp-admin/edit-post-rows.php
r9735 r9891 23 23 24 24 <tbody> 25 <?php 26 if ( have_posts() ) { 27 post_rows(); 28 } else { 29 ?> 30 <tr> 31 <td colspan="8"><?php _e('No posts found.') ?></td> 32 </tr> 33 <?php 34 } // end if ( have_posts() ) 35 ?> 25 <?php post_rows(); ?> 36 26 </tbody> 37 27 </table> -
trunk/wp-admin/edit.php
r9807 r9891 120 120 121 121 <form id="posts-filter" action="" method="get"> 122 122 123 <ul class="subsubsub"> 123 124 <?php … … 159 160 <?php endif; ?> 160 161 <input type="hidden" name="mode" value="<?php echo $mode; ?>" /> 162 163 <?php if ( have_posts() ) { ?> 161 164 162 165 <div class="tablenav"> … … 264 267 <br class="clear" /> 265 268 </div> 269 270 <?php } else { // have_posts() ?> 271 <div class="clear"></div> 272 <p><?php _e('No posts found') ?></p> 273 <?php } ?> 266 274 267 275 </form>
Note: See TracChangeset
for help on using the changeset viewer.