Changeset 7473
- Timestamp:
- 03/22/2008 10:29:54 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/edit-page-form.php
r7439 r7473 69 69 <p><strong><?php _e('Publish Status') ?></strong></p> 70 70 <p> 71 <select name='post_status' >71 <select name='post_status' tabindex='4'> 72 72 <?php if ( current_user_can('publish_posts') ) : ?> 73 73 <option<?php selected( $post->post_status, 'publish' ); selected( $post->post_status, 'private' );?> value='publish'><?php _e('Published') ?></option> … … 83 83 </p> 84 84 85 <p><label for="post_status_private" class="selectit"><input id="post_status_private" name="post_status" type="checkbox" value="private" <?php checked($post->post_status, 'private'); ?> /> <?php _e('Keep this page private') ?></label></p>85 <p><label for="post_status_private" class="selectit"><input id="post_status_private" name="post_status" type="checkbox" value="private" <?php checked($post->post_status, 'private'); ?> tabindex='4' /> <?php _e('Keep this page private') ?></label></p> 86 86 <?php 87 87 if ($post_ID) { … … 104 104 ?> 105 105 <p class="curtime"><?php printf($stamp, $date, $time); ?> 106 <a href="#edit_timestamp" class="edit-timestamp" ><?php _e('Edit') ?></a></p>107 108 <div id='timestampdiv'><?php touch_time(($action == 'edit') ); ?></div>106 <a href="#edit_timestamp" class="edit-timestamp" tabindex='4'><?php _e('Edit') ?></a></p> 107 108 <div id='timestampdiv'><?php touch_time(($action == 'edit'),1,4); ?></div> 109 109 110 110 </div>
Note: See TracChangeset
for help on using the changeset viewer.