// Disable autocomplete on radio button in installer, error fixed with Chrome browser

This commit is contained in:
Francois Gaillard
2013-06-05 10:41:46 +02:00
parent ba1c4b9f3a
commit 73a372bab2
+2 -2
View File
@@ -40,11 +40,11 @@ var default_iso = '<?php echo $this->session->shop_country ?>';
<label class="aligned"><?php echo $this->l('Install demo products:') ?></label>
<div class="contentinput">
<label>
<input value="full" type="radio" name="db_mode" style="vertical-align: middle;" <?php if ($this->install_type == 'full'): ?>checked="checked"<?php endif; ?> />
<input value="full" type="radio" name="db_mode" style="vertical-align: middle;" <?php if ($this->install_type == 'full'): ?>checked="checked"<?php endif; ?> autocomplete="off" />
<?php echo $this->l('Yes') ?>
</label>
<label>
<input value="lite" type="radio" name="db_mode" style="vertical-align: middle;" <?php if ($this->install_type == 'lite'): ?>checked="checked"<?php endif; ?> />
<input value="lite" type="radio" name="db_mode" style="vertical-align: middle;" <?php if ($this->install_type == 'lite'): ?>checked="checked"<?php endif; ?> autocomplete="off" />
<?php echo $this->l('No'); ?>
</label>
</div>