mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 06:08:52 +00:00
[ticket/12201] Display error and sorting options when there are no attachments
PHPBB3-12201
This commit is contained in:
parent
01464e2451
commit
38775fc063
2 changed files with 8 additions and 1 deletions
|
@ -389,6 +389,7 @@
|
||||||
<!-- ENDIF -->
|
<!-- ENDIF -->
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<!-- IF .attachments -->
|
||||||
<table class="table1 zebra-table">
|
<table class="table1 zebra-table">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
|
@ -412,6 +413,11 @@
|
||||||
<!-- END attachments -->
|
<!-- END attachments -->
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
<!-- ELSE -->
|
||||||
|
<div class="errorbox">
|
||||||
|
<p>{L_NO_ATTACHMENTS}</p>
|
||||||
|
</div>
|
||||||
|
<!-- ENDIF -->
|
||||||
|
|
||||||
<!-- IF TOTAL_FILES -->
|
<!-- IF TOTAL_FILES -->
|
||||||
<div class="pagination">
|
<div class="pagination">
|
||||||
|
@ -422,6 +428,7 @@
|
||||||
• {PAGE_NUMBER}
|
• {PAGE_NUMBER}
|
||||||
<!-- ENDIF -->
|
<!-- ENDIF -->
|
||||||
</div>
|
</div>
|
||||||
|
<!-- ENDIF -->
|
||||||
|
|
||||||
<fieldset class="display-options">
|
<fieldset class="display-options">
|
||||||
{L_DISPLAY_LOG}{L_COLON} {S_LIMIT_DAYS} {L_SORT_BY}{L_COLON} {S_SORT_KEY} {S_SORT_DIR}
|
{L_DISPLAY_LOG}{L_COLON} {S_LIMIT_DAYS} {L_SORT_BY}{L_COLON} {S_SORT_KEY} {S_SORT_DIR}
|
||||||
|
@ -429,7 +436,6 @@
|
||||||
</fieldset>
|
</fieldset>
|
||||||
|
|
||||||
<hr />
|
<hr />
|
||||||
<!-- ENDIF -->
|
|
||||||
|
|
||||||
<!-- IF .attachments -->
|
<!-- IF .attachments -->
|
||||||
<fieldset class="quick">
|
<fieldset class="quick">
|
||||||
|
|
|
@ -130,6 +130,7 @@ $lang = array_merge($lang, array(
|
||||||
'NOT_ALLOWED_IN_PM' => 'Only allowed in posts',
|
'NOT_ALLOWED_IN_PM' => 'Only allowed in posts',
|
||||||
'NOT_ALLOWED_IN_PM_POST' => 'Not allowed',
|
'NOT_ALLOWED_IN_PM_POST' => 'Not allowed',
|
||||||
'NOT_ASSIGNED' => 'Not assigned',
|
'NOT_ASSIGNED' => 'Not assigned',
|
||||||
|
'NO_ATTACHMENTS' => 'No attachments found for this period.',
|
||||||
'NO_EXT_GROUP' => 'None',
|
'NO_EXT_GROUP' => 'None',
|
||||||
'NO_EXT_GROUP_NAME' => 'No group name entered',
|
'NO_EXT_GROUP_NAME' => 'No group name entered',
|
||||||
'NO_EXT_GROUP_SPECIFIED' => 'No extension group specified.',
|
'NO_EXT_GROUP_SPECIFIED' => 'No extension group specified.',
|
||||||
|
|
Loading…
Add table
Reference in a new issue