diff options
Diffstat (limited to 'app/Controllers/feedController.php')
| -rw-r--r-- | app/Controllers/feedController.php | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/app/Controllers/feedController.php b/app/Controllers/feedController.php index 4ec4b5a55..122807cf0 100644 --- a/app/Controllers/feedController.php +++ b/app/Controllers/feedController.php @@ -1141,16 +1141,9 @@ class FreshRSS_feed_Controller extends FreshRSS_ActionController { return; } - $attributes = $feed->attributes(); - $attributes['path_entries_filter'] = Minz_Request::paramString('selector_filter', true); - //Fetch & select content. try { - $fullContent = FreshRSS_Entry::getContentByParsing( - htmlspecialchars_decode($entry->link(), ENT_QUOTES), - htmlspecialchars_decode($content_selector, ENT_QUOTES), - $attributes - ); + $fullContent = $entry->getContentByParsing(); if ($fullContent != '') { $this->view->selectorSuccess = true; |
