summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHugues Hiegel <hugues@hiegel.fr>2008-03-03 16:40:14 +0100
committerHugues Hiegel <hugues@hiegel.fr>2008-03-03 16:40:14 +0100
commit639bd9e4775e59aac68a1d10e60b98609a99c301 (patch)
tree6a0d623bc0d325ca5874d16245398a962f4df4cf
parentd38a02a5aa0cd8646125c0841e6379bb85862ce4 (diff)
Quiet wget to get rid of LAAAAAARGE logfiles in /var/log/
-rw-r--r--Badges_v2.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/Badges_v2.php b/Badges_v2.php
index f4004a5..425b4d5 100644
--- a/Badges_v2.php
+++ b/Badges_v2.php
@@ -40,7 +40,7 @@ header("Content-Type: image/png");
if ( ! is_file($Stats)
||(filemtime($Stats) + CACHE < $_SERVER['REQUEST_TIME']))
{
- system("wget --no-cache http://ws.audioscrobbler.com/1.0/user/".rawurlencode($username)."/profile.xml -O $Stats.tmp");
+ system("wget -q --no-cache http://ws.audioscrobbler.com/1.0/user/".rawurlencode($username)."/profile.xml -O $Stats.tmp");
system("mv $Stats.tmp $Stats");
}