Fix password autofill

This commit is contained in:
Stanislav Khromov 2016-05-24 21:32:46 +02:00
parent 87b2f986a1
commit e8d2ec0b33

View file

@ -808,7 +808,7 @@ class WP_FFPC extends WP_FFPC_ABSTRACT {
<label for="authpass"><?php _e('Authentication: password', 'wp-ffpc'); ?></label>
</dt>
<dd>
<input type="password" autocomplete="off" name="authpass" id="authpass" value="<?php echo $this->options['authpass']; ?>" />
<input type="text" autocomplete="off" name="authpass" id="authpass" value="<?php echo $this->options['authpass']; ?>" />
<span class="description">
<?php _e('Password for authentication with for backends - WARNING, the password will be stored in an unsecure format!', 'wp-ffpc'); ?></span>
</dd>