Ticket #9501: unnessesary.bold.tag.remove.patch
File unnessesary.bold.tag.remove.patch, 1.8 KB (added by , 16 years ago) |
---|
-
edit-form-advanced.php
104 104 <div id="misc-publishing-actions"> 105 105 106 106 <div class="misc-pub-section<?php if ( !$can_publish ) { echo ' misc-pub-section-last'; } ?>"><label for="post_status"><?php _e('Status:') ?></label> 107 < b><span id="post-status-display">107 <span id="post-status-display"> 108 108 <?php 109 109 switch ( $post->post_status ) { 110 110 case 'private': … … 124 124 break; 125 125 } 126 126 ?> 127 </span> </b>127 </span> 128 128 <?php if ( 'publish' == $post->post_status || 'private' == $post->post_status || $can_publish ) { ?> 129 129 <a href="#post_status" <?php if ( 'private' == $post->post_status ) { ?>style="display:none;" <?php } ?>class="edit-post-status hide-if-no-js" tabindex='4'><?php _e('Edit') ?></a> 130 130 … … 149 149 </div><?php // /misc-pub-section ?> 150 150 151 151 <div class="misc-pub-section " id="visibility"> 152 <?php _e('Visibility:'); ?> < b><span id="post-visibility-display"><?php152 <?php _e('Visibility:'); ?> <span id="post-visibility-display"><?php 153 153 154 154 if ( 'private' == $post->post_status ) { 155 155 $post->post_password = ''; … … 166 166 $visibility_trans = __('Public'); 167 167 } 168 168 169 ?><?php echo wp_specialchars( $visibility_trans ); ?></span> </b><?php if ( $can_publish ) { ?> <a href="#visibility" class="edit-visibility hide-if-no-js"><?php _e('Edit'); ?></a>169 ?><?php echo wp_specialchars( $visibility_trans ); ?></span> <?php if ( $can_publish ) { ?> <a href="#visibility" class="edit-visibility hide-if-no-js"><?php _e('Edit'); ?></a> 170 170 171 171 <div id="post-visibility-select" class="hide-if-js"> 172 172 <input type="hidden" name="hidden_post_password" id="hidden-post-password" value="<?php echo attribute_escape($post->post_password); ?>" />