aboutsummaryrefslogtreecommitdiffhomepage
path: root/application/front
diff options
context:
space:
mode:
authorArthurHoaro <arthur@hoa.ro>2020-09-03 14:57:24 +0200
committerGitHub <noreply@github.com>2020-09-03 14:57:24 +0200
commit46d3f8162bb7950d3c7fec78ffcc2bdaf349dced (patch)
tree147736ec4a29d44987137fe098e467627f59bec6 /application/front
parent21163a3329ef19dc6ebadb75d6452ac02fd59ab3 (diff)
parent0386a84d824f95b991280e8c93645fa013eef7c4 (diff)
downloadShaarli-46d3f8162bb7950d3c7fec78ffcc2bdaf349dced.tar.gz
Shaarli-46d3f8162bb7950d3c7fec78ffcc2bdaf349dced.tar.zst
Shaarli-46d3f8162bb7950d3c7fec78ffcc2bdaf349dced.zip
Merge pull request #1537 from ArthurHoaro/fix/back-compatible-targets
Diffstat (limited to 'application/front')
-rw-r--r--application/front/controller/visitor/FeedController.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/application/front/controller/visitor/FeedController.php b/application/front/controller/visitor/FeedController.php
index da2848c2..8d8b546a 100644
--- a/application/front/controller/visitor/FeedController.php
+++ b/application/front/controller/visitor/FeedController.php
@@ -46,10 +46,10 @@ class FeedController extends ShaarliVisitorController
46 46
47 $data = $this->container->feedBuilder->buildData($feedType, $request->getParams()); 47 $data = $this->container->feedBuilder->buildData($feedType, $request->getParams());
48 48
49 $this->executePageHooks('render_feed', $data, $feedType); 49 $this->executePageHooks('render_feed', $data, 'feed.' . $feedType);
50 $this->assignAllView($data); 50 $this->assignAllView($data);
51 51
52 $content = $this->render('feed.'. $feedType); 52 $content = $this->render('feed.' . $feedType);
53 53
54 $cache->cache($content); 54 $cache->cache($content);
55 55