summaryrefslogtreecommitdiff
path: root/app/Models/Feed.php
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2014-01-05 18:06:06 +0100
committerGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2014-01-05 18:06:06 +0100
commit6eea96656a933b29b699999eec97299c4e363c79 (patch)
tree8420ce1dfeade3442d8d608d948af9df8c96feaf /app/Models/Feed.php
parent1fb25addd09660c08ff74b960b1c226acc319978 (diff)
Utilise QUERY_STRING plutôt que PATH_INFO pour favicons
Corrige https://github.com/marienfressinaud/FreshRSS/issues/348 Revenir dessus en cas de problème de cache HTTP des favicons.
Diffstat (limited to 'app/Models/Feed.php')
-rw-r--r--app/Models/Feed.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/Models/Feed.php b/app/Models/Feed.php
index f38828a42..df762c8fa 100644
--- a/app/Models/Feed.php
+++ b/app/Models/Feed.php
@@ -116,7 +116,7 @@ class FreshRSS_Feed extends Minz_Model {
@unlink($path . '.txt');
}
public function favicon () {
- return Minz_Url::display ('/f.php/' . $this->hash());
+ return Minz_Url::display ('/f.php?' . $this->hash());
}
public function _id ($value) {