فهرست منبع

Favicons : image pour 404

https://github.com/marienfressinaud/FreshRSS/issues/228
https://github.com/marienfressinaud/FreshRSS/issues/290
Alexandre Alapetite 12 سال پیش
والد
کامیت
0e9ed2a408
1فایلهای تغییر یافته به همراه2 افزوده شده و 0 حذف شده
  1. 2 0
      public/f.php

+ 2 - 0
public/f.php

@@ -50,6 +50,8 @@ $txtMTime = @filemtime($txt);
 if (($icoMTime == false) || ($txtMTime > $icoMTime)) {
 	if ($txtMTime == false) {
 		header('HTTP/1.1 404 Not Found');
+		header('Content-Type: image/gif');
+		readfile(PUBLIC_PATH . '/themes/icons/grey.gif');	//TODO: Better 404 favicon
 		die();
 	}
 	$url = file_get_contents($txt);