-
Bug
-
Resolution: Fixed
-
Minor
-
3.0.11
-
None
When an admin uses Google Chrome to open up the acp overview page for a user, the page opens with the confirm email and password fields autocompleted, even though adm/styles/acp_users_overview.html has 'autocomplete="off"' in those fields. This does not happen in other browsers I've tried.
When I googled this issue, I found that chrome now ignores 'autocomplete="off"' unless it appears in the <form> tag. So I tried the following and it seems to fix things:
OPEN
|
adm/acp_users_overview.html
|
|
FIND
|
<form id="user_overview" method="post" action="{U_ACTION}">
|
|
REPLACE WITH
|
<form id="user_overview" method="post" action="{U_ACTION}" autocomplete="off">
|
If this is accepted as a fix, you would presumably delete 'autocomplete="off" in the other places it appears in that file.