diff options
-rw-r--r-- | phpBB/templates/PSO/viewforum_body.tpl | 5 | ||||
-rw-r--r-- | phpBB/viewforum.php | 2 |
2 files changed, 7 insertions, 0 deletions
diff --git a/phpBB/templates/PSO/viewforum_body.tpl b/phpBB/templates/PSO/viewforum_body.tpl index 419ac54e34..843571b19b 100644 --- a/phpBB/templates/PSO/viewforum_body.tpl +++ b/phpBB/templates/PSO/viewforum_body.tpl @@ -34,6 +34,11 @@ <td class="row2" align="center" valign="middle"><span class="gensmall">{topicrow.LAST_POST}</span></td> </tr> <!-- END topicrow --> + <!-- BEGIN notopicsrow --> + <tr> + <td class="row1" colspan="6" align="center" valign="middle"><span class="gen">{L_NO_TOPICS}{topicrow.REPLIES}</span></td> + </tr> + <!-- END notopicsrow --> <tr> <td class="cat" colspan="6"><table width="100%" cellspacing="0" cellpadding="0" border="0"> <tr> diff --git a/phpBB/viewforum.php b/phpBB/viewforum.php index be2804c804..510c1eb39a 100644 --- a/phpBB/viewforum.php +++ b/phpBB/viewforum.php @@ -454,6 +454,8 @@ else "S_NO_TOPICS" => TRUE) ); + $template->assign_block_vars("notopicsrow", array() ); + } // |