diff options
author | Vjacheslav Trushkin <cyberalien@gmail.com> | 2013-08-17 18:55:07 +0300 |
---|---|---|
committer | Vjacheslav Trushkin <cyberalien@gmail.com> | 2013-09-14 10:10:44 +0300 |
commit | e4874c180a847dc69459e381398e315998626cb0 (patch) | |
tree | b121c70dc816a8addb46ce5cdcdee7f22f5d9215 /phpBB | |
parent | 22c8df5403b74cbcad8a267f12c048eaaf053e0f (diff) | |
download | forums-e4874c180a847dc69459e381398e315998626cb0.tar forums-e4874c180a847dc69459e381398e315998626cb0.tar.gz forums-e4874c180a847dc69459e381398e315998626cb0.tar.bz2 forums-e4874c180a847dc69459e381398e315998626cb0.tar.xz forums-e4874c180a847dc69459e381398e315998626cb0.zip |
[ticket/11795] Use phpBB template syntax instead of TWIG
PHPBB3-11795
Diffstat (limited to 'phpBB')
-rw-r--r-- | phpBB/styles/prosilver/template/overall_header.html | 2 | ||||
-rw-r--r-- | phpBB/styles/prosilver/template/pagination.html | 4 | ||||
-rw-r--r-- | phpBB/styles/subsilver2/template/overall_header.html | 4 |
3 files changed, 4 insertions, 6 deletions
diff --git a/phpBB/styles/prosilver/template/overall_header.html b/phpBB/styles/prosilver/template/overall_header.html index 26394034d4..bc8d9d366a 100644 --- a/phpBB/styles/prosilver/template/overall_header.html +++ b/phpBB/styles/prosilver/template/overall_header.html @@ -37,7 +37,7 @@ <![endif]--> <!-- IF S_USER_PM_POPUP and S_NEW_PM --> - {% set body_attributes %}{{ body_attributes }} data-popup-pm-url="{{ U_POPUP_PM|e('html_attr') }}"{% endset %} + {% set body_attributes %}{{ body_attributes }} data-popup-pm-url="{U_POPUP_PM|e('html_attr')}"{% endset %} <!-- ENDIF --> <!-- EVENT overall_header_head_append --> diff --git a/phpBB/styles/prosilver/template/pagination.html b/phpBB/styles/prosilver/template/pagination.html index 87c24f7ecb..172bc952e4 100644 --- a/phpBB/styles/prosilver/template/pagination.html +++ b/phpBB/styles/prosilver/template/pagination.html @@ -1,6 +1,4 @@ - {% set l_jump_page %}{L_JUMP_PAGE}{L_COLON}{% endset %} - - <a href="#" class="pagination-trigger" title="{L_JUMP_TO_PAGE}" data-lang-jump-page="{{ l_jump_page|e('html_attr') }}" 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="{ON_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 a1f69a81a5..4dfde86404 100644 --- a/phpBB/styles/subsilver2/template/overall_header.html +++ b/phpBB/styles/subsilver2/template/overall_header.html @@ -23,7 +23,7 @@ <script type="text/javascript"> // <![CDATA[ <!-- IF S_USER_PM_POPUP and S_NEW_PM --> - popup('{{ U_POPUP_PM|e('js') }}', 400, 225, '_phpbbprivmsg'); + popup('{U_POPUP_PM|e('js')}', 400, 225, '_phpbbprivmsg'); <!-- ENDIF --> function popup(url, width, height, name) @@ -41,7 +41,7 @@ function jumpto() { var page = prompt('{LA_JUMP_PAGE}{L_COLON}', '{ON_PAGE}'); var per_page = '{PER_PAGE}'; - var base_url = '{{ BASE_URL|e('js') }}'; + var base_url = '{BASE_URL|e('js')}'; if (page !== null && !isNaN(page) && page == Math.floor(page) && page > 0) { |