Changeset 9365 for trunk/wp-admin/edit-form-advanced.php
- Timestamp:
- 10/27/2008 06:07:59 AM (17 years ago)
- File:
-
- 1 edited
-
trunk/wp-admin/edit-form-advanced.php (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/edit-form-advanced.php
r9363 r9365 71 71 <div class="submitbox" id="submitpost"> 72 72 73 < div class="inside-submitbox">73 <!--<div class="inside-submitbox">--> 74 74 75 75 <div id="minor-publishing"> 76 76 <div id="misc-publishing-actions"> 77 77 <?php if ( $can_publish && current_user_can( 'edit_others_posts' ) ) { ?> 78 <div class=" insidebox" id="sticky-checkbox"><input id="sticky" name="sticky" type="checkbox" value="sticky" <?php checked(is_sticky($post->ID), true); ?> tabindex="4" /> <label for="sticky" class="selectit"><?php _e('Stick to front page') ?></label></div>79 <?php } ?> 80 81 <div class=" insidebox" id="visibility">78 <div class="misc-pub-section" id="sticky-checkbox"><input id="sticky" name="sticky" type="checkbox" value="sticky" <?php checked(is_sticky($post->ID), true); ?> tabindex="4" /> <label for="sticky" class="selectit"><?php _e('Stick to front page') ?></label></div> 79 <?php } ?> 80 81 <div class="misc-pub-section" id="visibility"> 82 82 <?php _e('Visibility:'); ?> <?php _e('Public'); // TODO: dropdown ?> 83 83 </div> … … 103 103 ?> 104 104 <?php if ( $can_publish ) : // Contributors don't get to choose the date of publish ?> 105 <div class=" insideboxcurtime">105 <div class="misc-pub-section curtime"> 106 106 <span id="timestamp"><?php printf($stamp, $date, $time); ?></span> 107 107 <a href="#edit_timestamp" class="edit-timestamp hide-if-no-js" tabindex='4'><?php _e('Edit') ?></a> … … 110 110 <?php endif; ?> 111 111 112 <div class=" insidebox"><label for="post_status"><?php _e('Status:') ?></label>112 <div class="misc-pub-section misc-pub-section-last"><label for="post_status"><?php _e('Status:') ?></label> 113 113 <strong><span id="post-status-display"> 114 114 <?php … … 169 169 <div id="minor-publishing-actions"> 170 170 <?php if ( 'publish' == $post->post_status || 'private' == $post->post_status ) 171 $savebtn = attribute_escape( __(' Save') );171 $savebtn = attribute_escape( __('Update Post') ); 172 172 else 173 173 $savebtn = attribute_escape( __('Save Draft') ); … … 183 183 <div class="clear"></div> 184 184 </div> 185 < /div>185 <!--</div>--> 186 186 187 187 <div id="major-publishing-actions"> … … 198 198 if ( !in_array( $post->post_status, array('publish', 'future') ) || 0 == $post->ID ) { ?> 199 199 <?php if ( current_user_can('publish_posts') ) : ?> 200 <input name="publish" type="submit" class="button " id="publish" tabindex="5" accesskey="p" value="<?php _e('Publish') ?>" />200 <input name="publish" type="submit" class="button-primary" id="publish" tabindex="5" accesskey="p" value="<?php _e('Publish') ?>" /> 201 201 <?php else : ?> 202 <input name="publish" type="submit" class="button" id="publish" tabindex="5" accesskey="p" value="<?php _e('Submit for Review') ?>" /> 203 <?php endif; ?> 204 <?php } ?> 205 </div> 206 </div> 202 <input name="publish" type="submit" class="button-primary" id="publish" tabindex="5" accesskey="p" value="<?php _e('Submit for Review') ?>" /> 203 <?php endif; ?> 204 <?php } ?> 205 </div> 206 </div> 207 207 208 <div class="clear"></div> 208 209 </div>
Note: See TracChangeset
for help on using the changeset viewer.