Make WordPress Core

Changeset 25071


Ignore:
Timestamp:
08/21/2013 07:06:12 AM (11 years ago)
Author:
dd32
Message:

Add a note that the FTP Password will not be stored on the server to the FTP credentials page. Fixes #16492

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/file.php

    r25056 r25071  
    10261026<tr valign="top">
    10271027<th scope="row"><label for="password"><?php echo $label_pass; ?></label></th>
    1028 <td><input name="password" type="password" id="password" value="<?php if ( defined('FTP_PASS') ) echo '*****'; ?>"<?php disabled( defined('FTP_PASS') ); ?> size="40" /></td>
     1028<td><div><input name="password" type="password" id="password" value="<?php if ( defined('FTP_PASS') ) echo '*****'; ?>"<?php disabled( defined('FTP_PASS') ); ?> size="40" /></div>
     1029<div><em><?php if ( ! defined('FTP_PASS') ) _e( 'This password will not be stored on the server.' ); ?></em></div></td>
    10291030</tr>
    10301031
Note: See TracChangeset for help on using the changeset viewer.