Clarify the connection information requested in request_filesystem_credentials() to reduce confusion surrounding FTP information versus your WordPress login. see #13467, props jane.

git-svn-id: https://develop.svn.wordpress.org/trunk@15098 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Andrew Nacin 2010-06-01 20:35:59 +00:00
parent ba0dab7090
commit 3c50fb2f00
1 changed files with 10 additions and 2 deletions

View File

@ -964,8 +964,16 @@ jQuery(function($){
<div class="wrap">
<?php screen_icon(); ?>
<h2><?php _e('Connection Information') ?></h2>
<p><?php _e('To perform the requested action, connection information is required.') ?></p>
<p><?php
_e('To perform the requested action, WordPress needs to access to your web server.');
if ( ( isset( $types['ftp'] ) || isset( $types['ftps'] ) ) ) {
if ( isset( $types['ssh'] ) )
_e('Please enter your FTP or SSH credentials to proceed.');
else
_e('Please enter your FTP credentials to proceed.');
}
_e('If you do not remember your credentials, you should contact your web host.');
?></p>
<table class="form-table">
<tr valign="top">
<th scope="row"><label for="hostname"><?php _e('Hostname') ?></label></th>