From 4de65e4b0abb98e8cf7603b2cd93855f43d23dd5 Mon Sep 17 00:00:00 2001 From: Urban Müller Date: Wed, 18 Nov 2009 15:13:10 +0000 Subject: simple fallback parser --- it_html.class | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/it_html.class b/it_html.class index 5569309..8f2370f 100644 --- a/it_html.class +++ b/it_html.class @@ -444,7 +444,8 @@ function u(/* ... */) $base = preg_replace(array('|\0|', '/\\\\/'), array('', '/'), $base); # kill null chars, turn \ to / - $u = parse_url($base); + if (!($u = @parse_url($base))) + list($u['path'], $u['query']) = explode("?", $base, 2); # handle scheme, user, password, host $hostpart = -- cgit v1.2.3