aboutsummaryrefslogtreecommitdiff
path: root/app/Models
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:56 +0100
commit12e0b6b094041fc22937520b3218e4f61915fd50 (patch)
treebcf0d0597c36c644bfee1365efcf46d5567b3a88 /app/Models
parent1b8bb565083d8aa5b91d84e8a65c825d415db0b7 (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')
-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) {