From 01076e6c2b2ca9ba54d4d9ec66ab7aacea08efa5 Mon Sep 17 00:00:00 2001 From: Christian Helbling Date: Mon, 2 May 2016 16:07:07 +0200 Subject: fix url in alerts (started with //) --- it_url.class | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/it_url.class b/it_url.class index 405397e..ce1f96f 100644 --- a/it_url.class +++ b/it_url.class @@ -610,7 +610,7 @@ function get_cache($p = array()) */ function get_cache_contents($p) { - return ($fn = self::get_cache($p)) ? file_get_contents($fn) : ($p['safety'] === 0 ? null : it::error(array('title' => "failed getting " . $p['url'], 'body' => var_export($p, true)))); + return ($fn = self::get_cache($p)) ? file_get_contents($fn) : ($p['safety'] === 0 ? null : it::error(array('title' => "failed getting " . it_url::absolute($p['url']), 'body' => var_export($p, true)))); } /** -- cgit v1.2.3