Autofilling single entry no longer enabled as default (not safe)

This commit is contained in:
varjolintu 2017-04-28 11:07:41 +03:00
parent 05c95f1b3e
commit 5395740086
2 changed files with 2 additions and 2 deletions

View file

@ -22,7 +22,7 @@ page.initSettings = function() {
page.settings.usePasswordGenerator = 1;
}
if(!("autoFillSingleEntry" in page.settings)) {
page.settings.autoFillSingleEntry = 1;
page.settings.autoFillSingleEntry = 0;
}
if(!("autoRetrieveCredentials" in page.settings)) {
page.settings.autoRetrieveCredentials = 1;

View file

@ -104,7 +104,7 @@
<p>
<div class="checkbox">
<label class="checkbox">
<input type="checkbox" name="autoFillSingleEntry" value="1" /> Automatically fill-in single credentials entry.
<input type="checkbox" name="autoFillSingleEntry" value="0" /> Automatically fill-in single credentials entry.
</label>
<span class="help-block">If chromeKeePassXC does only receive a single entry from KeePassXC it automatically fills this credentials into the found credential fields.</span>
<span class="bg-danger">Warning! Using auto-fill is not safe. Use at your own risk.</span>