aboutsummaryrefslogtreecommitdiffhomepage
path: root/templates/settings_field.php
diff options
context:
space:
mode:
Diffstat (limited to 'templates/settings_field.php')
-rw-r--r--templates/settings_field.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/settings_field.php b/templates/settings_field.php
index 15b6c71..c0f0f7d 100644
--- a/templates/settings_field.php
+++ b/templates/settings_field.php
@@ -17,7 +17,7 @@ $fieldName = str_replace('.', '<DOT>', $key);
<?php if ($inputType == 'select'): ?>
- <select id="<?= $id ?>" name="<?= $fieldName ?>">
+ <select id="<?= $id ?>" name="<?= $fieldName ?>" autocomplete="off">
<?php foreach ($options as $o): ?>
<option <?= $value == $o ? 'selected' : '' ?>><?= $o ?></option>
<?php endforeach; ?>