aboutsummaryrefslogtreecommitdiff
path: root/p/f.php
diff options
context:
space:
mode:
authorGravatar Marien Fressinaud <dev@marienfressinaud.fr> 2014-12-29 11:46:01 +0100
committerGravatar Marien Fressinaud <dev@marienfressinaud.fr> 2014-12-29 11:46:01 +0100
commitea7946658289ab768f0948c50d5aa553f6e826d1 (patch)
treebb109bcb78f4531ed237f74b09db81d65b7d43dc /p/f.php
parent4f1fc70f876f27a6a9dc09dcf8c0f016466ea8e9 (diff)
Fix typo coding style
See https://github.com/FreshRSS/FreshRSS/issues/290
Diffstat (limited to 'p/f.php')
-rw-r--r--p/f.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/p/f.php b/p/f.php
index f29de095d..d00b36eb0 100644
--- a/p/f.php
+++ b/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');