diff options
author | Mario <mario@mariovavti.com> | 2023-03-23 20:11:18 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2023-03-23 20:11:18 +0000 |
commit | 2c483c460a2d5c806b9e62097673ad237e6b154a (patch) | |
tree | 811998820caebf68be26eb471c6f218ec2039992 /include/taxonomy.php | |
parent | 5c755fdd1c41538c243a428bb72aa2bd62ff105f (diff) | |
download | volse-hubzilla-2c483c460a2d5c806b9e62097673ad237e6b154a.tar.gz volse-hubzilla-2c483c460a2d5c806b9e62097673ad237e6b154a.tar.bz2 volse-hubzilla-2c483c460a2d5c806b9e62097673ad237e6b154a.zip |
initial check in to allow all mentions option
Diffstat (limited to 'include/taxonomy.php')
-rw-r--r-- | include/taxonomy.php | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/include/taxonomy.php b/include/taxonomy.php index 671f96c2e..3f6db50d1 100644 --- a/include/taxonomy.php +++ b/include/taxonomy.php @@ -119,13 +119,14 @@ function store_item_tag($uid,$iid,$otype,$type,$term,$url = '') { } -function get_terms_oftype($arr,$type) { - $ret = array(); - if(! (is_array($arr) && count($arr))) +function get_terms_oftype($arr, $type) { + $ret = []; + + if(!is_array($arr) && count($arr)) return $ret; if(! is_array($type)) - $type = array($type); + $type = [$type]; foreach($type as $t) foreach($arr as $x) |