Changeset 6950 for trunk/wp-admin/edit-form-advanced.php
- Timestamp:
- 02/21/2008 12:27:23 AM (18 years ago)
- File:
-
- 1 edited
-
trunk/wp-admin/edit-form-advanced.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/edit-form-advanced.php
r6949 r6950 46 46 } 47 47 48 $saveasdraft = '<input name="save" type="submit" id="save" tabindex="3" value="' . attribute_escape( __('Save and Continue Editing') ) . '" />';48 $saveasdraft = '<input name="save" type="submit" id="save" class="button" tabindex="3" value="' . attribute_escape( __('Save and Continue Editing') ) . '" />'; 49 49 50 50 ?> … … 155 155 156 156 <p class="submit"> 157 <input type="submit" name="save" id="save-post" value="<?php _e('Save'); ?>" style="font-weight: bold;" tabindex="4" />157 <input type="submit" name="save" id="save-post" value="<?php _e('Save'); ?>" style="font-weight: bold;" tabindex="4" class="button" /> 158 158 <?php 159 159 if ( !in_array( $post->post_status, array('publish', 'future') ) || 0 == $post_ID ) { 160 160 ?> 161 161 <?php if ( current_user_can('publish_posts') ) : ?> 162 <input name="publish" type="submit" id="publish" tabindex="5" accesskey="p" value="<?php _e('Publish') ?>" />162 <input name="publish" type="submit" class="button" id="publish" tabindex="5" accesskey="p" value="<?php _e('Publish') ?>" /> 163 163 <?php else : ?> 164 <input name="publish" type="submit" id="publish" tabindex="5" accesskey="p" value="<?php _e('Submit for Review') ?>" />164 <input name="publish" type="submit" class="button" id="publish" tabindex="5" accesskey="p" value="<?php _e('Submit for Review') ?>" /> 165 165 <?php endif; ?> 166 166 <?php
Note: See TracChangeset
for help on using the changeset viewer.