Skip to content

Commit c044f44

Browse files
committed
Merge branch '3.2.x'
2 parents e8f08ef + 507efee commit c044f44

2 files changed

Lines changed: 9 additions & 1 deletion

File tree

phpBB/language/en/common.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -805,6 +805,10 @@
805805
'TOPIC_REVIEW' => 'Topic review',
806806
'TOPIC_TITLE' => 'Topic title',
807807
'TOPIC_UNAPPROVED' => 'This topic has not been approved.',
808+
'TOPIC_UNAPPROVED_FORUM' => array(
809+
1 => 'Topic awaiting approval',
810+
2 => 'Topics awaiting approval',
811+
),
808812
'TOPIC_DELETED' => 'This topic has been deleted.',
809813
'TOTAL_ATTACHMENTS' => 'Attachment(s)',
810814
'TOTAL_LOGS' => array(

phpBB/styles/prosilver/template/forumlist_body.html

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,11 @@
107107
<!-- ENDIF -->
108108
<br />{forumrow.LAST_POST_TIME}
109109
<!-- ELSE -->
110-
{L_NO_POSTS}<br />&nbsp;
110+
{% if forumrow.U_UNAPPROVED_TOPICS %}
111+
{{ lang('TOPIC_UNAPPROVED_FORUM', forumrow.TOPICS) }}
112+
{% else %}
113+
{{ lang('NO_POSTS') }}
114+
{% endif %}
111115
<!-- ENDIF -->
112116
</span>
113117
</dd>

0 commit comments

Comments
 (0)