diff options
author | Louis7777 <Louis7777@users.noreply.github.com> | 2014-09-12 01:51:49 +0300 |
---|---|---|
committer | Tristan Darricau <github@nicofuma.fr> | 2014-09-13 22:44:37 +0200 |
commit | 2cf5b848db1eb9dbc6f12f1002bc587e51b3b189 (patch) | |
tree | e06ee73990d940d9cf74b064a66026a501876317 | |
parent | 7d6ceb81c1891ad1cfe518b7f2f0cc62968ad21e (diff) | |
download | forums-2cf5b848db1eb9dbc6f12f1002bc587e51b3b189.tar forums-2cf5b848db1eb9dbc6f12f1002bc587e51b3b189.tar.gz forums-2cf5b848db1eb9dbc6f12f1002bc587e51b3b189.tar.bz2 forums-2cf5b848db1eb9dbc6f12f1002bc587e51b3b189.tar.xz forums-2cf5b848db1eb9dbc6f12f1002bc587e51b3b189.zip |
[ticket/13058] Add min value to jump to page input
PHPBB3-13058
-rw-r--r-- | phpBB/styles/prosilver/template/pagination.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/styles/prosilver/template/pagination.html b/phpBB/styles/prosilver/template/pagination.html index cb2c09bff7..4680eaa175 100644 --- a/phpBB/styles/prosilver/template/pagination.html +++ b/phpBB/styles/prosilver/template/pagination.html @@ -7,7 +7,7 @@ <ul class="dropdown-contents"> <li>{L_JUMP_TO_PAGE}{L_COLON}</li> <li class="page-jump-form"> - <input type="number" name="page-number" maxlength="6" title="{L_JUMP_PAGE}" class="inputbox tiny" data-per-page="{PER_PAGE}" data-base-url="{BASE_URL|e('html_attr')}" data-start-name="{START_NAME}" /> + <input type="number" name="page-number" min="1" maxlength="6" title="{L_JUMP_PAGE}" class="inputbox tiny" data-per-page="{PER_PAGE}" data-base-url="{BASE_URL|e('html_attr')}" data-start-name="{START_NAME}" /> <input class="button2" value="{L_GO}" type="button" /> </li> </ul> |