Ticket #22333: meta-boxes.php.patch

File meta-boxes.php.patch, 1.0 KB (added by nofearinc, 7 months ago)

meta-boxes.php patch for IDs

  • wp-admin/includes/meta-boxes.php

     
    5555 
    5656<div id="misc-publishing-actions"> 
    5757 
    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> 
    5959<span id="post-status-display"> 
    6060<?php 
    6161switch ( $post->post_status ) { 
     
    172172} 
    173173 
    174174if ( $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"> 
    176176        <span id="timestamp"> 
    177177        <?php printf($stamp, $date); ?></span> 
    178178        <a href="#edit_timestamp" class="edit-timestamp hide-if-no-js"><?php _e('Edit') ?></a> 
     
    11011101                <a href="#" class="remove"><?php _e( 'Remove Featured Image' ); ?></a> 
    11021102        </div> 
    11031103        <?php 
    1104 } 
    1105  No newline at end of file 
     1104}