summaryrefslogtreecommitdiff
path: root/app/views
diff options
context:
space:
mode:
authorGravatar Marien Fressinaud <dev@marienfressinaud.fr> 2015-01-16 23:20:59 +0100
committerGravatar Marien Fressinaud <dev@marienfressinaud.fr> 2015-01-16 23:20:59 +0100
commit9483c6cf6759364678ca37d3f8379d35c72a8675 (patch)
tree3c82695d046b7b81a10bfd150802f473ec53be47 /app/views
parent4c143426712f75fa04999f4e8b3c0b6900bf062d (diff)
Fix bug if a shortcut is not in the initial config
A new shortcut was never saved because ConfigurationSetter never set a shortcut which did not appear in the initial conf.
Diffstat (limited to 'app/views')
-rw-r--r--app/views/configure/shortcut.phtml2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/configure/shortcut.phtml b/app/views/configure/shortcut.phtml
index fdbeed3ea..f68091af9 100644
--- a/app/views/configure/shortcut.phtml
+++ b/app/views/configure/shortcut.phtml
@@ -114,7 +114,7 @@
<div class="form-group">
<label class="group-name" for="close_dropdown_shortcut"><?php echo _t('conf.shortcut.close_dropdown'); ?></label>
<div class="group-controls">
- <input type="text" id="help_shortcut" name="shortcuts[close_dropdown]" list="keys" value="<?php echo $s['close_dropdown']; ?>" />
+ <input type="text" id="close_dropdown" name="shortcuts[close_dropdown]" list="keys" value="<?php echo $s['close_dropdown']; ?>" />
</div>
</div>