diff options
author | Cesar G <prototech91@gmail.com> | 2014-02-16 00:32:09 -0800 |
---|---|---|
committer | Cesar G <prototech91@gmail.com> | 2014-04-15 13:57:45 -0700 |
commit | 38775fc06371fd0aebea2794f480dde6d7e643e7 (patch) | |
tree | 61ecca774a3b2ec56e8382750a358ea3152f7ff7 | |
parent | 01464e2451893b73489cb83d45c9655a0c791395 (diff) | |
download | forums-38775fc06371fd0aebea2794f480dde6d7e643e7.tar forums-38775fc06371fd0aebea2794f480dde6d7e643e7.tar.gz forums-38775fc06371fd0aebea2794f480dde6d7e643e7.tar.bz2 forums-38775fc06371fd0aebea2794f480dde6d7e643e7.tar.xz forums-38775fc06371fd0aebea2794f480dde6d7e643e7.zip |
[ticket/12201] Display error and sorting options when there are no attachments
PHPBB3-12201
-rw-r--r-- | phpBB/adm/style/acp_attachments.html | 8 | ||||
-rw-r--r-- | phpBB/language/en/acp/attachments.php | 1 |
2 files changed, 8 insertions, 1 deletions
diff --git a/phpBB/adm/style/acp_attachments.html b/phpBB/adm/style/acp_attachments.html index e026b81ad0..5d35666fdd 100644 --- a/phpBB/adm/style/acp_attachments.html +++ b/phpBB/adm/style/acp_attachments.html @@ -389,6 +389,7 @@ <!-- ENDIF --> </div> +<!-- IF .attachments --> <table class="table1 zebra-table"> <thead> <tr> @@ -412,6 +413,11 @@ <!-- END attachments --> </tbody> </table> +<!-- ELSE --> + <div class="errorbox"> + <p>{L_NO_ATTACHMENTS}</p> + </div> +<!-- ENDIF --> <!-- IF TOTAL_FILES --> <div class="pagination"> @@ -422,6 +428,7 @@ • {PAGE_NUMBER} <!-- ENDIF --> </div> + <!-- ENDIF --> <fieldset class="display-options"> {L_DISPLAY_LOG}{L_COLON} {S_LIMIT_DAYS} {L_SORT_BY}{L_COLON} {S_SORT_KEY} {S_SORT_DIR} @@ -429,7 +436,6 @@ </fieldset> <hr /> - <!-- ENDIF --> <!-- IF .attachments --> <fieldset class="quick"> diff --git a/phpBB/language/en/acp/attachments.php b/phpBB/language/en/acp/attachments.php index c7d68d29c2..1eab22839b 100644 --- a/phpBB/language/en/acp/attachments.php +++ b/phpBB/language/en/acp/attachments.php @@ -130,6 +130,7 @@ $lang = array_merge($lang, array( 'NOT_ALLOWED_IN_PM' => 'Only allowed in posts', 'NOT_ALLOWED_IN_PM_POST' => 'Not allowed', 'NOT_ASSIGNED' => 'Not assigned', + 'NO_ATTACHMENTS' => 'No attachments found for this period.', 'NO_EXT_GROUP' => 'None', 'NO_EXT_GROUP_NAME' => 'No group name entered', 'NO_EXT_GROUP_SPECIFIED' => 'No extension group specified.', |