diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2012-10-17 22:38:18 +0200 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2012-10-17 23:34:37 +0200 |
commit | 7ce43d49d8aadeab7db316741cc9d2503fee844c (patch) | |
tree | 2c0b53fb789e5fae1d1ab6e3786ca8ed4be48ee9 | |
parent | 7675d72622cf47789c83c9a243d17b0db37b72d2 (diff) | |
download | forums-7ce43d49d8aadeab7db316741cc9d2503fee844c.tar forums-7ce43d49d8aadeab7db316741cc9d2503fee844c.tar.gz forums-7ce43d49d8aadeab7db316741cc9d2503fee844c.tar.bz2 forums-7ce43d49d8aadeab7db316741cc9d2503fee844c.tar.xz forums-7ce43d49d8aadeab7db316741cc9d2503fee844c.zip |
[ticket/11014] Fix IF statements for new template pagination
PHPBB3-11014
-rw-r--r-- | phpBB/styles/subsilver2/template/mcp_footer.html | 2 | ||||
-rw-r--r-- | phpBB/styles/subsilver2/template/ucp_groups_manage.html | 2 | ||||
-rw-r--r-- | phpBB/styles/subsilver2/template/viewonline_body.html | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/phpBB/styles/subsilver2/template/mcp_footer.html b/phpBB/styles/subsilver2/template/mcp_footer.html index b48c244653..280920b148 100644 --- a/phpBB/styles/subsilver2/template/mcp_footer.html +++ b/phpBB/styles/subsilver2/template/mcp_footer.html @@ -3,7 +3,7 @@ </tr> </table> - <!-- IF PAGINATION --> + <!-- IF .pagination --> <table width="80%" align="{S_CONTENT_FLOW_END}" cellspacing="1"> <tr> <td class="nav" valign="middle" nowrap="nowrap"> {PAGE_NUMBER}<br /></td> diff --git a/phpBB/styles/subsilver2/template/ucp_groups_manage.html b/phpBB/styles/subsilver2/template/ucp_groups_manage.html index ac678895a6..decd40a6de 100644 --- a/phpBB/styles/subsilver2/template/ucp_groups_manage.html +++ b/phpBB/styles/subsilver2/template/ucp_groups_manage.html @@ -185,7 +185,7 @@ </table> <div class="pagination" style="float: {S_CONTENT_FLOW_BEGIN};"> - <!-- IF PAGINATION --> + <!-- IF .pagination --> <!-- INCLUDE pagination.html --> <!-- ELSE --> {S_ON_PAGE} diff --git a/phpBB/styles/subsilver2/template/viewonline_body.html b/phpBB/styles/subsilver2/template/viewonline_body.html index b05a9470e0..9820124375 100644 --- a/phpBB/styles/subsilver2/template/viewonline_body.html +++ b/phpBB/styles/subsilver2/template/viewonline_body.html @@ -4,7 +4,7 @@ <h4>{TOTAL_GUEST_USERS_ONLINE}<!-- IF S_SWITCH_GUEST_DISPLAY --> [ <a href="{U_SWITCH_GUEST_DISPLAY}">{L_SWITCH_GUEST_DISPLAY}</a> ]<!-- ENDIF --></h4> <br /> -<!-- IF PAGINATION --> +<!-- IF .pagination --> <table width="100%" cellspacing="1"> <tr> <td class="nav" valign="middle" nowrap="nowrap"> {PAGE_NUMBER}<br /></td> @@ -35,7 +35,7 @@ <!-- ENDIF --> </table> -<!-- IF PAGINATION --> +<!-- IF .pagination --> <table width="100%" cellspacing="1"> <tr> <td class="nav" valign="middle" nowrap="nowrap"> {PAGE_NUMBER}<br /></td> |