Changeset 9506 for trunk/wp-admin/edit-page-form.php
- Timestamp:
- 11/04/2008 03:22:24 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/edit-page-form.php
r9491 r9506 191 191 if ( !in_array( $post->post_status, array('publish', 'future') ) || 0 == $post->ID ) { ?> 192 192 <?php if ( current_user_can('publish_posts') ) : ?> 193 <?php if ( time() < strtotime( $post->post_date_gmt . ' +0000' ) ) : ?>193 <?php if ( !empty($post->post_date_gmt) && time() < strtotime( $post->post_date_gmt . ' +0000' ) ) : ?> 194 194 <input name="publish" type="submit" class="button-primary" id="publish" tabindex="5" accesskey="p" value="<?php _e('Schedule') ?>" /> 195 195 <?php else : ?>
Note: See TracChangeset
for help on using the changeset viewer.