aboutsummaryrefslogtreecommitdiff
path: root/app/layout/layout.phtml
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2022-06-19 20:10:13 +0200
committerGravatar GitHub <noreply@github.com> 2022-06-19 20:10:13 +0200
commitdcc77ee343d51e32e1234c63c258d9b4e4de8a81 (patch)
tree26722be6e9f5bd7e9500d20d32372c7a8f4b9900 /app/layout/layout.phtml
parenta90d93979f63b48c76308ae26c845d8b58f5368d (diff)
Initial support for PHP 8.2 (#4421)
* Initial support for PHP 8.2 Using dev image `freshrss/freshrss:latest` https://github.com/FreshRSS/FreshRSS/pull/4420 * Deprecated string interpolation
Diffstat (limited to 'app/layout/layout.phtml')
-rw-r--r--app/layout/layout.phtml2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/layout/layout.phtml b/app/layout/layout.phtml
index f1a84e134..7e3ffd34a 100644
--- a/app/layout/layout.phtml
+++ b/app/layout/layout.phtml
@@ -66,7 +66,7 @@ if (_t('gen.dir') === 'rtl') {
<?php
$msg = '';
$status = 'closed';
- if (isset($this->notification)) {
+ if (!empty($this->notification)) {
$msg = $this->notification['content'];
$status = $this->notification['type'];