Changeset 6950 for trunk/wp-admin/edit-page-form.php
- Timestamp:
- 02/21/2008 12:27:23 AM (18 years ago)
- File:
-
- 1 edited
-
trunk/wp-admin/edit-page-form.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/edit-page-form.php
r6949 r6950 120 120 121 121 <p class="submit"> 122 <input type="submit" name="save" value="<?php _e('Save'); ?>" style="font-weight: bold;" tabindex="4" />122 <input type="submit" name="save" class="button" value="<?php _e('Save'); ?>" style="font-weight: bold;" tabindex="4" /> 123 123 <?php 124 124 if ( !in_array( $post->post_status, array('publish', 'future') ) || 0 == $post_ID ) { 125 125 ?> 126 126 <?php if ( current_user_can('publish_pages') ) : ?> 127 <input name="publish" type="submit" id="publish" tabindex="5" accesskey="p" value="<?php _e('Publish') ?>" />127 <input name="publish" type="submit" class="button" id="publish" tabindex="5" accesskey="p" value="<?php _e('Publish') ?>" /> 128 128 <?php else : ?> 129 <input name="publish" type="submit" id="publish" tabindex="5" accesskey="p" value="<?php _e('Submit for Review') ?>" />129 <input name="publish" type="submit" class="button" id="publish" tabindex="5" accesskey="p" value="<?php _e('Submit for Review') ?>" /> 130 130 <?php endif; ?> 131 131 <?php
Note: See TracChangeset
for help on using the changeset viewer.