Ticket #32131: 32131.diff
| File 32131.diff, 677 bytes (added by , 11 years ago) |
|---|
-
src/wp-admin/includes/template.php
1691 1691 if ( 'pending' == $post->post_status && 'pending' != $post_status ) 1692 1692 /* translators: post state */ 1693 1693 $post_states['pending'] = _x('Pending', 'post state'); 1694 if ( 'future' == $post->post_status ) 1695 if ( time() > strtotime($post->post_date) ) 1696 $post_states['scheduled'] = __('Missed Schedule'); 1697 else 1698 $post_states['scheduled'] = __('Scheduled'); 1694 1699 if ( is_sticky($post->ID) ) 1695 1700 $post_states['sticky'] = __('Sticky'); 1696 1701