diff options
Diffstat (limited to 'phpBB')
| -rw-r--r-- | phpBB/language/en/common.php | 4 | ||||
| -rw-r--r-- | phpBB/styles/prosilver/template/forumlist_body.html | 6 | 
2 files changed, 9 insertions, 1 deletions
diff --git a/phpBB/language/en/common.php b/phpBB/language/en/common.php index a037c5bfe8..835030762c 100644 --- a/phpBB/language/en/common.php +++ b/phpBB/language/en/common.php @@ -780,6 +780,10 @@ $lang = array_merge($lang, array(  	'TOPIC_REVIEW'		=> 'Topic review',  	'TOPIC_TITLE'		=> 'Topic title',  	'TOPIC_UNAPPROVED'	=> 'This topic has not been approved.', +	'TOPIC_UNAPPROVED_FORUM'	=> array( +		1	=> 'Topic awaiting approval', +		2	=> 'Topics awaiting approval', +	),  	'TOPIC_DELETED'		=> 'This topic has been deleted.',  	'TOTAL_ATTACHMENTS'	=> 'Attachment(s)',  	'TOTAL_LOGS'		=> array( diff --git a/phpBB/styles/prosilver/template/forumlist_body.html b/phpBB/styles/prosilver/template/forumlist_body.html index eed27b5131..8250a1fd07 100644 --- a/phpBB/styles/prosilver/template/forumlist_body.html +++ b/phpBB/styles/prosilver/template/forumlist_body.html @@ -103,7 +103,11 @@  								<!-- ENDIF -->  								<br />{forumrow.LAST_POST_TIME}  							<!-- ELSE --> -								{L_NO_POSTS}<br />  +							{% if forumrow.U_UNAPPROVED_TOPICS %} +								{{ lang('TOPIC_UNAPPROVED_FORUM', forumrow.TOPICS) }} +							{% else %} +								{{ lang('NO_POSTS') }} +							{% endif %}  							<!-- ENDIF -->  						</span>  					</dd>  | 
