mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 14:18:52 +00:00
[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
This commit is contained in:
parent
2dae36e3fb
commit
bd0244180b
1 changed files with 1 additions and 1 deletions
|
@ -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 -->
|
||||
|
|
Loading…
Add table
Reference in a new issue