aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeorgy Redkozubov <georgy.redkozubov@linaro.org>2013-04-05 18:45:41 +0400
committerGeorgy Redkozubov <georgy.redkozubov@linaro.org>2013-04-05 18:45:41 +0400
commitdd4e6e802213f7f35b0a378358164461e7e98c22 (patch)
tree0e7d4b1750bef566debc9cf866661f1558f29ac3
parent77b7846bb08ca359a91ed6f05dbaa748739ce3d7 (diff)
Fixed checkbox to pass True when checked.
Enable toggle of checkbox.
-rw-r--r--rhodecode/templates/admin/settings/settings.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/rhodecode/templates/admin/settings/settings.html b/rhodecode/templates/admin/settings/settings.html
index 30d3b497..f367c63b 100644
--- a/rhodecode/templates/admin/settings/settings.html
+++ b/rhodecode/templates/admin/settings/settings.html
@@ -257,7 +257,7 @@
</div>
<div class="checkboxes">
<div class="checkbox">
- ${h.checkbox('extensions_dumbgit', 'False')}
+ ${h.checkbox('extensions_dumbgit', value='True')}
<label for="extensions_dumbgit">${_('dumb protocol')}</label>
</div>
<span class="help-block">${_('Serves files through a normal HTTP connection')}</span>