diff options
| author | Andrew Dolgov <fox@fakecake.org> | 2024-01-13 18:29:30 +0000 |
|---|---|---|
| committer | Andrew Dolgov <fox@fakecake.org> | 2024-01-13 18:29:30 +0000 |
| commit | 283ad4ebea9e93a97848000f38ca91b23ce883ff (patch) | |
| tree | 0b9ea618b438156b3803df115afec5e34d30e3a8 /classes/API.php | |
| parent | d334023267848accb339c8ec3186be2afde3b514 (diff) | |
| parent | 8727fb3ba8a28da48c71bdd39166b9aeb3c3d986 (diff) | |
Merge branch 'feature/unused-var-cleanup' into 'master'
Clean up some unused variables.
See merge request tt-rss/tt-rss!19
Diffstat (limited to 'classes/API.php')
| -rw-r--r-- | classes/API.php | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/classes/API.php b/classes/API.php index 3a3ae0e63..45820f300 100644 --- a/classes/API.php +++ b/classes/API.php @@ -691,20 +691,6 @@ class API extends Handler { } } - $params = array( - "feed" => $feed_id, - "limit" => $limit, - "view_mode" => $view_mode, - "cat_view" => $is_cat, - "search" => $search, - "override_order" => $order, - "offset" => $offset, - "since_id" => $since_id, - "include_children" => $include_nested, - "check_first_id" => $check_first_id, - "skip_first_id_check" => $skip_first_id_check - ); - $qfh_ret = []; if (!$is_cat && is_numeric($feed_id) && $feed_id < PLUGIN_FEED_BASE_INDEX && $feed_id > LABEL_BASE_INDEX) { |