summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--url.class5
1 files changed, 3 insertions, 2 deletions
diff --git a/url.class b/url.class
index f414449..e7aeb57 100644
--- a/url.class
+++ b/url.class
@@ -366,10 +366,11 @@ function get_cache($p = array())
else
touch($path);
- if (($parts = parse_url($p['url'])) === false)
- it::error('malformed url ' . $p['url']);
if ($p['safety'] == 1 && !$result)
+ {
+ $parts = @parse_url($p['url']);
it::error($p['it_error'] + array('title'=>"get_cache: download failures on {$p['url']}", 'id'=>$parts['host'])); # send err only if multi failure
+ }
@unlink("$path.lock");
}