Default favicon served with HTTP code 200

Fix https://github.com/FreshRSS/FreshRSS/issues/760
This commit is contained in:
Marien Fressinaud
2015-01-26 13:02:47 +01:00
parent 39b8c75c40
commit da7d34d2ef

View File

@@ -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();