aboutsummaryrefslogtreecommitdiff
path: root/app/Controllers
diff options
context:
space:
mode:
Diffstat (limited to 'app/Controllers')
-rwxr-xr-xapp/Controllers/feedController.php5
-rw-r--r--app/Controllers/subscriptionController.php2
2 files changed, 6 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 != '') {
diff --git a/app/Controllers/subscriptionController.php b/app/Controllers/subscriptionController.php
index b699e9213..9e4eab8e2 100644
--- a/app/Controllers/subscriptionController.php
+++ b/app/Controllers/subscriptionController.php
@@ -209,6 +209,8 @@ class FreshRSS_subscription_Controller extends FreshRSS_ActionController {
}
}
+ $feed->_attributes('path_entries_filter', Minz_Request::param('path_entries_filter', ''));
+
$values = array(
'name' => Minz_Request::param('name', ''),
'kind' => $feed->kind(),