1
0
mirror of https://tt-rss.org/git/tt-rss.git synced 2024-06-22 11:36:38 +02:00

Fix incorrect parenthesis placement in count().

This commit is contained in:
JustAMacUser 2020-10-29 00:52:07 -04:00
parent 0a6ff72e70
commit f782ee46ad

View File

@ -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);
}