Ticket #34267: 34267.patch
| File 34267.patch, 2.4 KB (added by , 10 years ago) |
|---|
-
src/wp-admin/css/common.css
1579 1579 font-weight: 600; 1580 1580 } 1581 1581 1582 .ie8 #screen-options-wrap legend { 1582 #request-filesystem-credentials-form legend { 1583 font-size: 1em; 1584 padding: 1.33em 0; 1585 font-weight: 600; 1586 } 1587 1588 .ie8 #screen-options-wrap legend, 1589 #request-filesystem-credentials-form legend { 1583 1590 color: inherit; 1584 1591 } 1585 1592 -
src/wp-admin/includes/file.php
1138 1138 </script> 1139 1139 <form action="<?php echo esc_url( $form_post ) ?>" method="post"> 1140 1140 <div id="request-filesystem-credentials-form" class="request-filesystem-credentials-form"> 1141 <h 3 id="request-filesystem-credentials-title"><?php _e( 'Connection Information' ) ?></h3>1141 <h2 id="request-filesystem-credentials-title"><?php _e( 'Connection Information' ) ?></h2> 1142 1142 <p id="request-filesystem-credentials-desc"><?php 1143 1143 $label_user = __('Username'); 1144 1144 $label_pass = __('Password'); … … 1176 1176 </label> 1177 1177 </div> 1178 1178 <?php if ( isset($types['ssh']) ) : ?> 1179 <h4><?php _e('Authentication Keys') ?></h4> 1179 <fieldset> 1180 <legend><?php _e( 'Authentication Keys' ); ?></legend> 1180 1181 <label for="public_key"> 1181 1182 <span class="field-title"><?php _e('Public Key:') ?></span> 1182 1183 <input name="public_key" type="text" id="public_key" aria-describedby="auth-keys-desc" value="<?php echo esc_attr($public_key) ?>"<?php disabled( defined('FTP_PUBKEY') ); ?> /> … … 1185 1186 <span class="field-title"><?php _e('Private Key:') ?></span> 1186 1187 <input name="private_key" type="text" id="private_key" value="<?php echo esc_attr($private_key) ?>"<?php disabled( defined('FTP_PRIKEY') ); ?> /> 1187 1188 </label> 1189 </fieldset> 1188 1190 <span id="auth-keys-desc"><?php _e('Enter the location on the server where the public and private keys are located. If a passphrase is needed, enter that in the password field above.') ?></span> 1189 1191 <?php endif; ?> 1190 < h4><?php _e('Connection Type') ?></h4>1191 < fieldset><legend class="screen-reader-text"><span><?php _e('Connection Type') ?></span></legend>1192 <fieldset> 1193 <legend><?php _e( 'Connection Type' ); ?></legend> 1192 1194 <?php 1193 1195 $disabled = disabled( (defined('FTP_SSL') && FTP_SSL) || (defined('FTP_SSH') && FTP_SSH), true, false ); 1194 1196 foreach ( $types as $name => $text ) : ?>