aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
diff options
context:
space:
mode:
authorbrunoais <brunoaiss@gmail.com>2013-08-26 19:56:27 +0100
committerbrunoais <brunoaiss@gmail.com>2013-08-26 19:56:27 +0100
commitcc93f189a01df6027f88dc2cad556b748849e569 (patch)
tree4bde87e02cebdcaa64ac44a954129f5238f6f498 /phpBB
parent3cc0a4149f263a2a4ccc92673dfb9bcb1afb8bb9 (diff)
downloadforums-cc93f189a01df6027f88dc2cad556b748849e569.tar
forums-cc93f189a01df6027f88dc2cad556b748849e569.tar.gz
forums-cc93f189a01df6027f88dc2cad556b748849e569.tar.bz2
forums-cc93f189a01df6027f88dc2cad556b748849e569.tar.xz
forums-cc93f189a01df6027f88dc2cad556b748849e569.zip
[ticket/11803] Revert POLL_MAX_OPTIONS min value to 0
When it was made the min number of options allowed to a user was 1 but 0 can also be used as it means unlimited. PHPBB3-11803
Diffstat (limited to 'phpBB')
-rw-r--r--phpBB/styles/prosilver/template/posting_poll_body.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/styles/prosilver/template/posting_poll_body.html b/phpBB/styles/prosilver/template/posting_poll_body.html
index 5bb7e1a3df..a131c10533 100644
--- a/phpBB/styles/prosilver/template/posting_poll_body.html
+++ b/phpBB/styles/prosilver/template/posting_poll_body.html
@@ -26,7 +26,7 @@
<dl>
<dt><label for="poll_max_options">{L_POLL_MAX_OPTIONS}{L_COLON}</label></dt>
- <dd><input type="number" min="1" max="999" name="poll_max_options" id="poll_max_options" size="3" maxlength="3" value="{POLL_MAX_OPTIONS}" class="inputbox autowidth" /></dd>
+ <dd><input type="number" min="0" max="999" name="poll_max_options" id="poll_max_options" size="3" maxlength="3" value="{POLL_MAX_OPTIONS}" class="inputbox autowidth" /></dd>
<dd>{L_POLL_MAX_OPTIONS_EXPLAIN}</dd>
</dl>
<dl>