diff options
Diffstat (limited to 'app/views/index/normal.phtml')
| -rw-r--r-- | app/views/index/normal.phtml | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/app/views/index/normal.phtml b/app/views/index/normal.phtml index 1b942ae17..cc54d10fd 100644 --- a/app/views/index/normal.phtml +++ b/app/views/index/normal.phtml @@ -87,6 +87,7 @@ $today = @strtotime('today'); ?>" data-entry="<?= $this->entry->id() ?>" data-feed="<?= $this->feed->id() ?>" data-priority="<?= $this->feed->priority() + ?>" data-link="<?= $this->entry->link() ?>"><?php $this->renderHelper('index/normal/entry_header'); if ($this->feed === null || $this->entry === null) { @@ -203,6 +204,9 @@ $today = @strtotime('today'); </a> <?php - if ($nbEntries > 0 && FreshRSS_Context::userConf()->show_nav_buttons) { - $this->partial('nav_entries'); + if ($nbEntries > 0) { + echo Minz_ExtensionManager::callHookString(Minz_HookType::NavEntries); + if (FreshRSS_Context::userConf()->show_nav_buttons) { + $this->partial('nav_entries'); + } } |
