Ticket #22333: meta-boxes.php.patch
File meta-boxes.php.patch, 1.0 KB (added by , 11 years ago) |
---|
-
wp-admin/includes/meta-boxes.php
55 55 56 56 <div id="misc-publishing-actions"> 57 57 58 <div class="misc-pub-section" ><label for="post_status"><?php _e('Status:') ?></label>58 <div class="misc-pub-section" id="misc-status-section"><label for="post_status"><?php _e('Status:') ?></label> 59 59 <span id="post-status-display"> 60 60 <?php 61 61 switch ( $post->post_status ) { … … 172 172 } 173 173 174 174 if ( $can_publish ) : // Contributors don't get to choose the date of publish ?> 175 <div class="misc-pub-section curtime" >175 <div class="misc-pub-section curtime" id="misc-curtime-section"> 176 176 <span id="timestamp"> 177 177 <?php printf($stamp, $date); ?></span> 178 178 <a href="#edit_timestamp" class="edit-timestamp hide-if-no-js"><?php _e('Edit') ?></a> … … 1101 1101 <a href="#" class="remove"><?php _e( 'Remove Featured Image' ); ?></a> 1102 1102 </div> 1103 1103 <?php 1104 } 1105 No newline at end of file 1104 }