diff options
| author | JustAMacUser <myself-cmsmxc3e@zaikos.com> | 2020-10-29 00:52:07 -0400 |
|---|---|---|
| committer | JustAMacUser <myself-cmsmxc3e@zaikos.com> | 2020-10-29 00:52:07 -0400 |
| commit | f782ee46ad64c7fa4b53681c7a8a5d2091a3f493 (patch) | |
| tree | 18ae9302d11f098a7db6af3e300ff2ac1fb98bef | |
| parent | 0a6ff72e70ce52a6523134e302c31f3d8e7fa5ff (diff) | |
Fix incorrect parenthesis placement in `count()`.
| -rwxr-xr-x | classes/rssutils.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/classes/rssutils.php b/classes/rssutils.php index 28260739b..bd7256ec7 100755 --- a/classes/rssutils.php +++ b/classes/rssutils.php @@ -864,7 +864,7 @@ class RSSUtils { if (Debug::get_loglevel() >= Debug::$LOG_EXTENDED) { Debug::log("matched filters: ", Debug::$LOG_VERBOSE); - if (count($matched_filters != 0)) { + if (count($matched_filters) != 0) { print_r($matched_filters); } |