diff options
author | PayBas <contact@paybas.com> | 2014-06-06 00:56:35 +0200 |
---|---|---|
committer | PayBas <contact@paybas.com> | 2014-06-06 14:37:58 +0200 |
commit | 371e363c3021119cd84fc451739e6b86726fb8e0 (patch) | |
tree | 275c884bd5115bdc02e87242e061a3f2d1ecc88e | |
parent | 36b42d376ede0c173209443fc2846d4950b0e0e2 (diff) | |
download | forums-371e363c3021119cd84fc451739e6b86726fb8e0.tar forums-371e363c3021119cd84fc451739e6b86726fb8e0.tar.gz forums-371e363c3021119cd84fc451739e6b86726fb8e0.tar.bz2 forums-371e363c3021119cd84fc451739e6b86726fb8e0.tar.xz forums-371e363c3021119cd84fc451739e6b86726fb8e0.zip |
[ticket/12613] Removed unnecessary checks
PHPBB3-12613
-rw-r--r-- | phpBB/styles/prosilver/template/mcp_queue.html | 8 | ||||
-rw-r--r-- | phpBB/styles/prosilver/template/mcp_reports.html | 8 | ||||
-rw-r--r-- | phpBB/styles/prosilver/template/mcp_warn_list.html | 8 |
3 files changed, 6 insertions, 18 deletions
diff --git a/phpBB/styles/prosilver/template/mcp_queue.html b/phpBB/styles/prosilver/template/mcp_queue.html index 86922b5a41..baef7dd77a 100644 --- a/phpBB/styles/prosilver/template/mcp_queue.html +++ b/phpBB/styles/prosilver/template/mcp_queue.html @@ -16,10 +16,9 @@ <p>{L_EXPLAIN}</p> <!-- IF .postrow --> - <!-- IF .pagination or TOTAL --> <div class="action-bar"> <div class="pagination"> - <!-- IF TOTAL -->{TOTAL}<!-- ENDIF --> + {TOTAL} <!-- IF .pagination --> <!-- INCLUDE pagination.html --> <!-- ELSE --> @@ -27,7 +26,6 @@ <!-- ENDIF --> </div> </div> - <!-- ENDIF --> <ul class="topiclist missing-column"> <li class="header"> @@ -84,10 +82,9 @@ <hr /> - <!-- IF .pagination or TOTAL --> <div class="action-bar"> <div class="pagination"> - <!-- IF TOTAL -->{TOTAL}<!-- ENDIF --> + {TOTAL} <!-- IF .pagination --> <!-- INCLUDE pagination.html --> <!-- ELSE --> @@ -95,7 +92,6 @@ <!-- ENDIF --> </div> </div> - <!-- ENDIF --> <!-- ELSE --> <p class="notopics"><strong> diff --git a/phpBB/styles/prosilver/template/mcp_reports.html b/phpBB/styles/prosilver/template/mcp_reports.html index 05ffe97f16..25366da04e 100644 --- a/phpBB/styles/prosilver/template/mcp_reports.html +++ b/phpBB/styles/prosilver/template/mcp_reports.html @@ -18,10 +18,9 @@ <p>{L_EXPLAIN}</p> <!-- IF .postrow --> - <!-- IF .pagination or TOTAL_REPORTS --> <div class="action-bar"> <div class="pagination"> - <!-- IF TOTAL -->{TOTAL_REPORTS}<!-- ENDIF --> + {TOTAL_REPORTS} <!-- IF .pagination --> <!-- INCLUDE pagination.html --> <!-- ELSE --> @@ -29,7 +28,6 @@ <!-- ENDIF --> </div> </div> - <!-- ENDIF --> <ul class="topiclist missing-column"> <li class="header"> @@ -90,10 +88,9 @@ <hr /> - <!-- IF .pagination or TOTAL_REPORTS --> <div class="action-bar"> <div class="pagination"> - <!-- IF TOTAL -->{TOTAL_REPORTS}<!-- ENDIF --> + {TOTAL_REPORTS} <!-- IF .pagination --> <!-- INCLUDE pagination.html --> <!-- ELSE --> @@ -101,7 +98,6 @@ <!-- ENDIF --> </div> </div> - <!-- ENDIF --> <!-- ELSE --> <p><strong>{L_NO_REPORTS}</strong></p> diff --git a/phpBB/styles/prosilver/template/mcp_warn_list.html b/phpBB/styles/prosilver/template/mcp_warn_list.html index 585dd97a73..b481a8fb83 100644 --- a/phpBB/styles/prosilver/template/mcp_warn_list.html +++ b/phpBB/styles/prosilver/template/mcp_warn_list.html @@ -10,10 +10,9 @@ <p>{L_WARNED_USERS_EXPLAIN}</p> <!-- IF .user --> - <!-- IF .pagination or TOTAL_USERS --> <div class="action-bar"> <div class="pagination"> - <!-- IF TOTAL_USERS -->{TOTAL_USERS}<!-- ENDIF --> + {TOTAL_USERS} <!-- IF .pagination --> <!-- INCLUDE pagination.html --> <!-- ELSE --> @@ -21,7 +20,6 @@ <!-- ENDIF --> </div> </div> - <!-- ENDIF --> <table class="table1"> <thead> @@ -53,10 +51,9 @@ <hr /> - <!-- IF .pagination or TOTAL_USERS --> <div class="action-bar"> <div class="pagination"> - <!-- IF TOTAL_USERS -->{TOTAL_USERS}<!-- ENDIF --> + {TOTAL_USERS} <!-- IF .pagination --> <!-- INCLUDE pagination.html --> <!-- ELSE --> @@ -64,7 +61,6 @@ <!-- ENDIF --> </div> </div> - <!-- ENDIF --> <!-- ELSE --> <p><strong>{L_NO_WARNINGS}</strong></p> |