summaryrefslogtreecommitdiff
path: root/p
diff options
context:
space:
mode:
authorGravatar Marien Fressinaud <dev@marienfressinaud.fr> 2015-01-26 13:02:47 +0100
committerGravatar Marien Fressinaud <dev@marienfressinaud.fr> 2015-01-26 13:02:47 +0100
commitda7d34d2ef45e4cfcf1410a279998f680a6338ea (patch)
tree5c203992f555508405d50575f75a0d583ed70c30 /p
parent39b8c75c40c74dce2730ad99cd1e0a5392c4f5f5 (diff)
Default favicon served with HTTP code 200
Fix https://github.com/FreshRSS/FreshRSS/issues/760
Diffstat (limited to 'p')
-rw-r--r--p/f.php1
1 files changed, 0 insertions, 1 deletions
diff --git a/p/f.php b/p/f.php
index fefbf9a10..411f65081 100644
--- a/p/f.php
+++ b/p/f.php
@@ -46,7 +46,6 @@ function download_favicon($website, $dest) {
function show_default_favicon() {
global $default_favicon;
- header('HTTP/1.1 404 Not Found');
header('Content-Type: image/ico');
readfile($default_favicon);
die();