Changeset 7883 for trunk/wp-admin/update.php
- Timestamp:
- 05/04/2008 10:37:06 AM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/update.php
r7465 r7883 46 46 <table class="form-table"> 47 47 <tr valign="top"> 48 <th scope="row">< ?php _e('Hostname:') ?></th>48 <th scope="row"><label for="hostname"><?php _e('Hostname:') ?></label></th> 49 49 <td><input name="hostname" type="text" id="hostname" value="<?php echo attribute_escape($hostname) ?>"<?php if( defined('FTP_HOST') ) echo ' disabled="disabled"' ?> size="40" /></td> 50 50 </tr> 51 51 <tr valign="top"> 52 <th scope="row">< ?php _e('Username:') ?></th>52 <th scope="row"><label for="username"><?php _e('Username:') ?></label></th> 53 53 <td><input name="username" type="text" id="username" value="<?php echo attribute_escape($username) ?>"<?php if( defined('FTP_USER') ) echo ' disabled="disabled"' ?> size="40" /></td> 54 54 </tr> 55 55 <tr valign="top"> 56 <th scope="row">< ?php _e('Password:') ?></th>56 <th scope="row"><label for="password"><?php _e('Password:') ?></label></th> 57 57 <td><input name="password" type="password" id="password" value=""<?php if( defined('FTP_PASS') ) echo ' disabled="disabled"' ?> size="40" /><?php if( defined('FTP_PASS') && !empty($password) ) echo '<em>'.__('(Password not shown)').'</em>'; ?></td> 58 58 </tr> 59 59 <tr valign="top"> 60 <th scope="row">< ?php _e('Use SSL:') ?></th>60 <th scope="row"><label for="ssl"><?php _e('Use SSL:') ?></label></th> 61 61 <td> 62 62 <select name="ssl" id="ssl"<?php if( defined('FTP_SSL') ) echo ' disabled="disabled"' ?>>
Note: See TracChangeset
for help on using the changeset viewer.