diff options
author | n-aleha <nick_aleha@myway.com> | 2014-08-07 17:08:33 +0300 |
---|---|---|
committer | n-aleha <nick_aleha@myway.com> | 2014-08-07 17:08:33 +0300 |
commit | 98155a945f48aa23432bf838c1db4c0d8892b7c6 (patch) | |
tree | 7a8a787d752036022f95cdee98db86cd5ccc0412 /phpBB | |
parent | ef26a6fd64c5e532cf1c91c54415a67b7dfa06bc (diff) | |
download | forums-98155a945f48aa23432bf838c1db4c0d8892b7c6.tar forums-98155a945f48aa23432bf838c1db4c0d8892b7c6.tar.gz forums-98155a945f48aa23432bf838c1db4c0d8892b7c6.tar.bz2 forums-98155a945f48aa23432bf838c1db4c0d8892b7c6.tar.xz forums-98155a945f48aa23432bf838c1db4c0d8892b7c6.zip |
[ticket/12922] Posts per page in MCP should have a min value of zero
In order to allow displaying the whole topic in MCP=>Main=>View topic,
the min value in the html input field must be 0.
PHPBB3-12922
Diffstat (limited to 'phpBB')
-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 6bf6af1b78..082bea22f1 100644 --- a/phpBB/styles/prosilver/template/mcp_topic.html +++ b/phpBB/styles/prosilver/template/mcp_topic.html @@ -34,7 +34,7 @@ <fieldset id="display-panel" class="fields2" role="tabpanel"> <dl> <dt><label for="posts_per_page">{L_POSTS_PER_PAGE}{L_COLON}</label><br /><span>{L_POSTS_PER_PAGE_EXPLAIN}</span></dt> - <dd><input class="inputbox autowidth" type="number" min="1" name="posts_per_page" id="posts_per_page" size="6" value="{POSTS_PER_PAGE}" /></dd> + <dd><input class="inputbox autowidth" type="number" min="0" name="posts_per_page" id="posts_per_page" size="6" value="{POSTS_PER_PAGE}" /></dd> </dl> <dl> <dt><label>{L_DISPLAY_POSTS}{L_COLON}</label></dt> |