diff options
Diffstat (limited to 'app/Controllers/feedController.php')
| -rwxr-xr-x | app/Controllers/feedController.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/app/Controllers/feedController.php b/app/Controllers/feedController.php index 31875fa56..c016d3584 100755 --- a/app/Controllers/feedController.php +++ b/app/Controllers/feedController.php @@ -916,12 +916,15 @@ class FreshRSS_feed_Controller extends FreshRSS_ActionController { return; } + $attributes = $feed->attributes(); + $attributes['path_entries_filter'] = trim(Minz_Request::param('selector_filter', '')); + //Fetch & select content. try { $fullContent = FreshRSS_Entry::getContentByParsing( htmlspecialchars_decode($entry->link(), ENT_QUOTES), $content_selector, - $feed->attributes() + $attributes ); if ($fullContent != '') { |
