Changeset 27029 for trunk/src/wp-admin/includes/file.php
- Timestamp:
- 01/24/2014 07:05:15 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/file.php
r26868 r27029 1053 1053 ?></p> 1054 1054 <table class="form-table"> 1055 <tr valign="top">1055 <tr> 1056 1056 <th scope="row"><label for="hostname"><?php _e('Hostname') ?></label></th> 1057 1057 <td><input name="hostname" type="text" id="hostname" value="<?php echo esc_attr($hostname); if ( !empty($port) ) echo ":$port"; ?>"<?php disabled( defined('FTP_HOST') ); ?> size="40" /></td> 1058 1058 </tr> 1059 1059 1060 <tr valign="top">1060 <tr> 1061 1061 <th scope="row"><label for="username"><?php echo $label_user; ?></label></th> 1062 1062 <td><input name="username" type="text" id="username" value="<?php echo esc_attr($username) ?>"<?php disabled( defined('FTP_USER') ); ?> size="40" /></td> 1063 1063 </tr> 1064 1064 1065 <tr valign="top">1065 <tr> 1066 1066 <th scope="row"><label for="password"><?php echo $label_pass; ?></label></th> 1067 1067 <td><div><input name="password" type="password" id="password" value="<?php if ( defined('FTP_PASS') ) echo '*****'; ?>"<?php disabled( defined('FTP_PASS') ); ?> size="40" /></div> … … 1070 1070 1071 1071 <?php if ( isset($types['ssh']) ) : ?> 1072 <tr id="ssh_keys" valign="top"style="<?php if ( 'ssh' != $connection_type ) echo 'display:none' ?>">1072 <tr id="ssh_keys" style="<?php if ( 'ssh' != $connection_type ) echo 'display:none' ?>"> 1073 1073 <th scope="row"><?php _e('Authentication Keys') ?> 1074 1074 <div class="key-labels textright"> … … 1081 1081 <?php endif; ?> 1082 1082 1083 <tr valign="top">1083 <tr> 1084 1084 <th scope="row"><?php _e('Connection Type') ?></th> 1085 1085 <td>
Note: See TracChangeset
for help on using the changeset viewer.