diff options
| author | Cesar G <prototech91@gmail.com> | 2014-02-02 12:53:34 -0800 |
|---|---|---|
| committer | Cesar G <prototech91@gmail.com> | 2014-02-03 23:00:34 -0800 |
| commit | f22e51c8a16d75449da03cb2d9f3e11573ce6f1d (patch) | |
| tree | de1edd0c652820783b1542e89c9866f8307c66f6 /phpBB/styles | |
| parent | 06e995964841743effcda041cf7fa1e34272a208 (diff) | |
| download | forums-f22e51c8a16d75449da03cb2d9f3e11573ce6f1d.tar forums-f22e51c8a16d75449da03cb2d9f3e11573ce6f1d.tar.gz forums-f22e51c8a16d75449da03cb2d9f3e11573ce6f1d.tar.bz2 forums-f22e51c8a16d75449da03cb2d9f3e11573ce6f1d.tar.xz forums-f22e51c8a16d75449da03cb2d9f3e11573ce6f1d.zip | |
[ticket/12153] Remove vars already assigned in generate_template_pagination().
PHPBB3-12153
Diffstat (limited to 'phpBB/styles')
| -rw-r--r-- | phpBB/styles/prosilver/template/pagination.html | 2 | ||||
| -rw-r--r-- | phpBB/styles/subsilver2/template/overall_header.html | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/styles/prosilver/template/pagination.html b/phpBB/styles/prosilver/template/pagination.html index 172bc952e4..cb54193c3f 100644 --- a/phpBB/styles/prosilver/template/pagination.html +++ b/phpBB/styles/prosilver/template/pagination.html @@ -1,4 +1,4 @@ - <a href="#" class="pagination-trigger" title="{L_JUMP_TO_PAGE}" data-lang-jump-page="{L_JUMP_PAGE|e('html_attr')}{L_COLON}" data-on-page="{ON_PAGE}" data-per-page="{PER_PAGE}" data-base-url="{BASE_URL|e('html_attr')}">{PAGE_NUMBER}</a> • + <a href="#" class="pagination-trigger" title="{L_JUMP_TO_PAGE}" data-lang-jump-page="{L_JUMP_PAGE|e('html_attr')}{L_COLON}" data-on-page="{CURRENT_PAGE}" data-per-page="{PER_PAGE}" data-base-url="{BASE_URL|e('html_attr')}">{PAGE_NUMBER}</a> • <ul> <!-- BEGIN pagination --> <!-- IF pagination.S_IS_PREV --> diff --git a/phpBB/styles/subsilver2/template/overall_header.html b/phpBB/styles/subsilver2/template/overall_header.html index 9ca989ea8b..5da73bd70d 100644 --- a/phpBB/styles/subsilver2/template/overall_header.html +++ b/phpBB/styles/subsilver2/template/overall_header.html @@ -36,7 +36,7 @@ function popup(url, width, height, name) function jumpto() { - var page = prompt('{LA_JUMP_PAGE}{L_COLON}', '{ON_PAGE}'); + var page = prompt('{LA_JUMP_PAGE}{L_COLON}', '{CURRENT_PAGE}'); var per_page = '{PER_PAGE}'; var base_url = '{BASE_URL|e('js')}'; |
