diff options
Diffstat (limited to 'app/Controllers/feedController.php')
| -rwxr-xr-x | app/Controllers/feedController.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/Controllers/feedController.php b/app/Controllers/feedController.php index 09b5ed88c..319faece8 100755 --- a/app/Controllers/feedController.php +++ b/app/Controllers/feedController.php @@ -934,13 +934,13 @@ class FreshRSS_feed_Controller extends FreshRSS_ActionController { } $attributes = $feed->attributes(); - $attributes['path_entries_filter'] = trim(Minz_Request::param('selector_filter', '')); + $attributes['path_entries_filter'] = trim(Minz_Request::param('selector_filter', '', true)); //Fetch & select content. try { $fullContent = FreshRSS_Entry::getContentByParsing( htmlspecialchars_decode($entry->link(), ENT_QUOTES), - $content_selector, + htmlspecialchars_decode($content_selector, ENT_QUOTES), $attributes ); |
