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.
pull/350/head
Alexandre Alapetite 11 years ago
parent 1fb25addd0
commit 6eea96656a
  1. 2
      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) {

Loading…
Cancel
Save