Changeset 2723 for trunk/wp-admin/post.php
- Timestamp:
- 07/17/2005 09:08:47 PM (21 years ago)
- File:
-
- 1 edited
-
trunk/wp-admin/post.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/post.php
r2709 r2723 327 327 <p><strong><?php _e('Your Drafts:') ?></strong> 328 328 <?php 329 for ( $i = 0; $i < 15; $i++ ) { 329 $num_drafts = count($drafts); 330 if ( $num_drafts > 15 ) $num_drafts = 15; 331 for ( $i = 0; $i < $num_drafts; $i++ ) { 330 332 $draft = $drafts[$i]; 331 333 if ( 0 != $i )
Note: See TracChangeset
for help on using the changeset viewer.