diff options
author | Urban Müller | 2014-04-08 17:51:45 +0200 |
---|---|---|
committer | Urban Müller | 2014-04-08 17:51:45 +0200 |
commit | 25738397ab8d9d531edfcdc92fe27760879defab (patch) | |
tree | 5f436e0fb645addfca8d84e0762120402179b441 /it_url.class | |
parent | 3302890ba7006b9090229f77422518f51d4c9667 (diff) | |
download | itools-25738397ab8d9d531edfcdc92fe27760879defab.tar.gz itools-25738397ab8d9d531edfcdc92fe27760879defab.tar.bz2 itools-25738397ab8d9d531edfcdc92fe27760879defab.zip |
fix err message in case of instanciated url object
Diffstat (limited to 'it_url.class')
-rw-r--r-- | it_url.class | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/it_url.class b/it_url.class index 0db934e..3888b17 100644 --- a/it_url.class +++ b/it_url.class @@ -375,7 +375,7 @@ function request($p=array()) $result = false; if ($result === false && $p['safety'] == 1) - it::error("problem (timeout?) getting " . $p['url'] . " " . $errstr); + it::error("problem (timeout?) getting $url->url " . $errstr); if ($p['maxlength'] && (strlen($this->data) + $len > $p['maxlength'])) $result = false; |