1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-04 07:47:34 +02:00

Merge pull request #6840 from battye/ticket/17034

[ticket/17034] Fix minimum posts rank validation
This commit is contained in:
Marc Alexander
2025-07-21 21:32:36 +02:00
committed by GitHub

View File

@@ -44,7 +44,7 @@
<div id="posts"<!-- IF S_SPECIAL_RANK --> style="display: none;"<!-- ENDIF -->> <div id="posts"<!-- IF S_SPECIAL_RANK --> style="display: none;"<!-- ENDIF -->>
<dl> <dl>
<dt><label for="min_posts">{L_RANK_MINIMUM}{L_COLON}</label></dt> <dt><label for="min_posts">{L_RANK_MINIMUM}{L_COLON}</label></dt>
<dd><input name="min_posts" type="number" id="min_posts" min="0" max="9999999999" value="{MIN_POSTS}" /></dd> <dd><input name="min_posts" type="number" id="min_posts" min="0" max="16777215" value="{MIN_POSTS}" /></dd>
</dl> </dl>
</div> </div>