Lack of interest Installation - field 'MySQL Password' and autocomplete="off"

This suggestion has been closed automatically because it did not receive enough votes over an extended period of time. If you wish to see this, please search for an open suggestion and, if you don't find any, post a new one.

Romchik®

Well-known member
This is not bug, but I think in install_config.php at line 41
Code:
            <input type="text" name="config[db][password]" value="" class="textCtrl" id="ctrl_config_db_password" />
should be autocomplete="off" added:
Code:
            <input type="text" autocomplete="off" name="config[db][password]"  value="" class="textCtrl" id="ctrl_config_db_password" />
 
Upvote 0
This suggestion has been closed. Votes are no longer accepted.
Doesn't that effectively alter a user's 'standard' internet browsing experience? A user might want to have autocomplete enabled to save typing it again, which is fair enough, we shouldn't really alter their preference.

But then again, if that input type was password, we wouldn't have this problem! It's preference really, I don't mind my browser autofilling my mySQL database password because it's not like I'm ever going to type anything similar to it for it to come up as a recommended autofill.
 
Top Bottom