summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--functions.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/functions.php b/functions.php
index ae73298ef..4c4f76876 100644
--- a/functions.php
+++ b/functions.php
@@ -476,7 +476,7 @@
$contents = fetch_file_contents($favicon_url, "image");
if ($contents) {
- $fp = fopen($icon_file, "w");
+ $fp = @fopen($icon_file, "w");
if ($fp) {
fwrite($fp, $contents);