소스 검색

Default favicon served with HTTP code 200

Fix https://github.com/FreshRSS/FreshRSS/issues/760
Marien Fressinaud 11 년 전
부모
커밋
da7d34d2ef
1개의 변경된 파일0개의 추가작업 그리고 1개의 파일을 삭제
  1. 0 1
      p/f.php

+ 0 - 1
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();