|
@@ -1013,7 +1013,7 @@ class FreshRSS_feed_Controller extends FreshRSS_ActionController {
|
|
|
// Redirect to the main page with correct notification.
|
|
// Redirect to the main page with correct notification.
|
|
|
Minz_Request::good(
|
|
Minz_Request::good(
|
|
|
_t('feedback.sub.feed.actualized', $feed->name()),
|
|
_t('feedback.sub.feed.actualized', $feed->name()),
|
|
|
- ['params' => ['get' => 'f_' . $id]],
|
|
|
|
|
|
|
+ ['params' => ['get' => 'f_' . $id, 'id' => $id]],
|
|
|
notificationName: 'actualizeAction',
|
|
notificationName: 'actualizeAction',
|
|
|
showNotification: FreshRSS_Context::userConf()->good_notification_timeout > 0);
|
|
showNotification: FreshRSS_Context::userConf()->good_notification_timeout > 0);
|
|
|
} elseif ($nbUpdatedFeeds >= 1) {
|
|
} elseif ($nbUpdatedFeeds >= 1) {
|
|
@@ -1192,7 +1192,7 @@ class FreshRSS_feed_Controller extends FreshRSS_ActionController {
|
|
|
|
|
|
|
|
Minz_Request::good(
|
|
Minz_Request::good(
|
|
|
_t('feedback.sub.feed.cache_cleared', $feed->name()),
|
|
_t('feedback.sub.feed.cache_cleared', $feed->name()),
|
|
|
- ['params' => ['get' => 'f_' . $feed->id()]],
|
|
|
|
|
|
|
+ ['params' => ['get' => 'f_' . $feed->id(), 'id' => $feed->id()]],
|
|
|
showNotification: FreshRSS_Context::userConf()->good_notification_timeout > 0
|
|
showNotification: FreshRSS_Context::userConf()->good_notification_timeout > 0
|
|
|
);
|
|
);
|
|
|
}
|
|
}
|
|
@@ -1258,7 +1258,7 @@ class FreshRSS_feed_Controller extends FreshRSS_ActionController {
|
|
|
//Give feedback to user.
|
|
//Give feedback to user.
|
|
|
Minz_Request::good(
|
|
Minz_Request::good(
|
|
|
_t('feedback.sub.feed.reloaded', $feed->name()),
|
|
_t('feedback.sub.feed.reloaded', $feed->name()),
|
|
|
- ['params' => ['get' => 'f_' . $feed->id()]],
|
|
|
|
|
|
|
+ ['params' => ['get' => 'f_' . $feed->id(), 'id' => $feed->id()]],
|
|
|
showNotification: FreshRSS_Context::userConf()->good_notification_timeout > 0
|
|
showNotification: FreshRSS_Context::userConf()->good_notification_timeout > 0
|
|
|
);
|
|
);
|
|
|
}
|
|
}
|