Index: frontends/php/triggers.php =================================================================== --- frontends/php/triggers.php (revision 92114) +++ frontends/php/triggers.php (working copy) @@ -748,7 +748,7 @@ // Skip empty tags. $filter_tags = array_filter($filter_tags, function ($v) { - return boolval($v['tag']); + return (bool) $v['tag']; }); $sort = getRequest('sort', CProfile::get('web.'.$page['file'].'.sort', 'description'));