diff options
author | Mario <mario@mariovavti.com> | 2022-10-20 19:25:01 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2022-10-20 19:25:01 +0000 |
commit | 7ca289edd0d568a51dfdf225a5ef0e9663c38838 (patch) | |
tree | 5af544fa0ff7ca29fad5b57240a7ed2d66c5b2cf /include/taxonomy.php | |
parent | bf434818d7cfac6bf29482d4bb07fc567de2fc90 (diff) | |
download | volse-hubzilla-7ca289edd0d568a51dfdf225a5ef0e9663c38838.tar.gz volse-hubzilla-7ca289edd0d568a51dfdf225a5ef0e9663c38838.tar.bz2 volse-hubzilla-7ca289edd0d568a51dfdf225a5ef0e9663c38838.zip |
fix php warnings
Diffstat (limited to 'include/taxonomy.php')
-rw-r--r-- | include/taxonomy.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/taxonomy.php b/include/taxonomy.php index 88be43464..1eded055a 100644 --- a/include/taxonomy.php +++ b/include/taxonomy.php @@ -555,7 +555,7 @@ function dir_tagblock($link,$r) { $o = ''; if(! $r) - $r = App::$data['directory_keywords']; + $r = App::$data['directory_keywords'] ?? []; if($r) { $o = '<div class="dirtagblock widget"><h3>' . t('Keywords') . '</h3><div class="tags" align="center">'; |