aboutsummaryrefslogtreecommitdiff
path: root/app/views/helpers/export/articles.phtml
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/helpers/export/articles.phtml')
-rw-r--r--app/views/helpers/export/articles.phtml4
1 files changed, 2 insertions, 2 deletions
diff --git a/app/views/helpers/export/articles.phtml b/app/views/helpers/export/articles.phtml
index 20001fb59..75ff5db84 100644
--- a/app/views/helpers/export/articles.phtml
+++ b/app/views/helpers/export/articles.phtml
@@ -21,10 +21,10 @@ if (empty($this->entryIdsTagNames)) {
foreach ($this->entries as $entry) {
if (!$this->internal_rendering) {
- /** @var FreshRSS_Entry */
+ /** @var FreshRSS_Entry|null $entry */
$entry = Minz_ExtensionManager::callHook('entry_before_display', $entry);
}
- if ($entry == null) {
+ if ($entry === null) {
continue;
}