소스 검색

Fix typo coding style

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

+ 1 - 1
p/f.php

@@ -28,7 +28,7 @@ function download_favicon($website, $dest) {
 	curl_setopt($c, CURLOPT_BINARYTRANSFER, true);
 	$img_raw = curl_exec($c);
 	$status_code = curl_getinfo($c, CURLINFO_HTTP_CODE);
-	curl_close ($c);
+	curl_close($c);
 
 	if ($status_code === 200) {
 		$file = fopen($dest, 'w');