diff options
author | RMcGirr83 <rmcgirr83@gmail.com> | 2016-08-30 11:41:58 -0400 |
---|---|---|
committer | RMcGirr83 <rmcgirr83@gmail.com> | 2016-08-30 12:56:10 -0400 |
commit | bd0244180be0d409084f9166c9084735818e75f1 (patch) | |
tree | 8b19683384da5e8f7933f36a42fa555556006d30 /phpBB/styles | |
parent | 2dae36e3fbde62c73c0ea08f5acd4e1629ebae34 (diff) | |
download | forums-bd0244180be0d409084f9166c9084735818e75f1.tar forums-bd0244180be0d409084f9166c9084735818e75f1.tar.gz forums-bd0244180be0d409084f9166c9084735818e75f1.tar.bz2 forums-bd0244180be0d409084f9166c9084735818e75f1.tar.xz forums-bd0244180be0d409084f9166c9084735818e75f1.zip |
[ticket/14755] Fix max length in mcp topic html file
Move posts does not accept a topic number greater than 999999
topic_id set in both posts table and topics table accepts 10 digits
https://tracker.phpbb.com/browse/PHPBB3-14755
PHPBB3-14755
Diffstat (limited to 'phpBB/styles')
-rw-r--r-- | phpBB/styles/prosilver/template/mcp_topic.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/styles/prosilver/template/mcp_topic.html b/phpBB/styles/prosilver/template/mcp_topic.html index e6978191de..d14dd6836e 100644 --- a/phpBB/styles/prosilver/template/mcp_topic.html +++ b/phpBB/styles/prosilver/template/mcp_topic.html @@ -73,7 +73,7 @@ <dl> <dt><label for="to_topic_id">{L_MERGE_TOPIC_ID}{L_COLON}</label></dt> <dd> - <input class="inputbox autowidth" type="number" min="0" max="999999" name="to_topic_id" id="to_topic_id" value="{TO_TOPIC_ID}" /> + <input class="inputbox autowidth" type="number" min="0" max="9999999999" name="to_topic_id" id="to_topic_id" value="{TO_TOPIC_ID}" /> <a href="{U_SELECT_TOPIC}" >{L_SELECT_TOPIC}</a> </dd> <!-- IF TO_TOPIC_INFO --><dd>{TO_TOPIC_INFO}</dd><!-- ENDIF --> |