Pages\Forum: Display feed link only for forums that have posts
This commit is contained in:
parent
a5c27acb2a
commit
ef8e34c861
1 changed files with 4 additions and 1 deletions
|
@ -68,7 +68,10 @@ class Forum extends Page
|
|||
$this->formMod = $this->formMod($forum);
|
||||
}
|
||||
|
||||
if ($this->c->config->i_feed_type > 0) {
|
||||
if (
|
||||
$this->c->config->i_feed_type > 0
|
||||
&& $forum->num_posts > 0
|
||||
) {
|
||||
$feedType = 2 === $this->c->config->i_feed_type ? 'atom' : 'rss';
|
||||
|
||||
$this->pageHeader('feed', 'link', 0, [
|
||||
|
|
Loading…
Reference in a new issue