From: Troy Engel Date: Sat, 5 Dec 2015 20:49:54 +0000 (-0600) Subject: Revert "Fix accidental use of emtpy array: [E_WARNING (2) plugins/af_readability... X-Git-Tag: 16.3~72^2~1 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=3e220fd13165eff5d2c3180f2a2c82672a3187a6;p=tt-rss.git Revert "Fix accidental use of emtpy array: [E_WARNING (2) plugins/af_readability/init.php:186 Invalid argument supplied for foreach()]" This reverts commit beaddcba961cd187e6d3ce968b94610838d70b54. --- diff --git a/plugins/af_readability/init.php b/plugins/af_readability/init.php index 97acb437..675e5c5d 100755 --- a/plugins/af_readability/init.php +++ b/plugins/af_readability/init.php @@ -33,11 +33,9 @@ class Af_Readability extends Plugin { print_notice("Enable the plugin for specific feeds in the feed editor."); $enabled_feeds = $this->host->get($this, "enabled_feeds"); - if (!array($enabled_feeds)) { - $enabled_feeds = array(); - } else { - $enabled_feeds = $this->filter_unknown_feeds($enabled_feeds); - } + if (!array($enabled_feeds)) $enabled_feeds = array(); + + $enabled_feeds = $this->filter_unknown_feeds($enabled_feeds); $this->host->set($this, "enabled_feeds", $enabled_feeds); if (count($enabled_feeds) > 0) { @@ -185,14 +183,12 @@ class Af_Readability extends Plugin { private function filter_unknown_feeds($enabled_feeds) { $tmp = array(); - if (!empty($enabled_feeds)) { - foreach ($enabled_feeds as $feed) { + foreach ($enabled_feeds as $feed) { - $result = db_query("SELECT id FROM ttrss_feeds WHERE id = '$feed' AND owner_uid = " . $_SESSION["uid"]); + $result = db_query("SELECT id FROM ttrss_feeds WHERE id = '$feed' AND owner_uid = " . $_SESSION["uid"]); - if (db_num_rows($result) != 0) { - array_push($tmp, $feed); - } + if (db_num_rows($result) != 0) { + array_push($tmp, $feed); } }