Ticket #13467: connection_info.patch
File connection_info.patch, 1.4 KB (added by , 14 years ago) |
---|
-
wp-admin/includes/file.php
964 964 <div class="wrap"> 965 965 <?php screen_icon(); ?> 966 966 <h2><?php _e('Connection Information') ?></h2> 967 <p><?php _e('To perform th e requested action, connection information is required.') ?></p>967 <p><?php _e('To perform this installation, files must be added to your web server. Please enter your FTP information to proceed. If you do not remember your FTP credentials, you can contact your hosting company to get them.') ?></p> 968 968 969 969 <table class="form-table"> 970 970 <tr valign="top"> … … 973 973 </tr> 974 974 975 975 <tr valign="top"> 976 <th scope="row"><label for="username"><?php _e(' Username') ?></label></th>976 <th scope="row"><label for="username"><?php _e(' FTP Username') ?></label></th> 977 977 <td><input name="username" type="text" id="username" value="<?php echo esc_attr($username) ?>"<?php disabled( defined('FTP_USER') ); ?> size="40" /></td> 978 978 </tr> 979 979 980 980 <tr valign="top"> 981 <th scope="row"><label for="password"><?php _e(' Password') ?></label></th>981 <th scope="row"><label for="password"><?php _e('FTP Password') ?></label></th> 982 982 <td><input name="password" type="password" id="password" value="<?php if ( defined('FTP_PASS') ) echo '*****'; ?>"<?php disabled( defined('FTP_PASS') ); ?> size="40" /></td> 983 983 </tr> 984 984