diff options
-rw-r--r-- | it_url.class | 3 | ||||
-rwxr-xr-x | tests/it_url.t | 4 |
2 files changed, 2 insertions, 5 deletions
diff --git a/it_url.class b/it_url.class index 2cebc62..d63e332 100644 --- a/it_url.class +++ b/it_url.class @@ -95,9 +95,6 @@ function it_url($url = null, $options = array()) $this->hostname = preg_replace('/^www\./', '', $this->realhostname); - # Get rid of common index file names - $url = preg_replace('#(^|/)(index\.[ps]?html?|index\.php[34]?|default\.aspx?)$#', '', $url); - $this->path = preg_replace('#^/$#', '', $url); if ($this->port != $protoport) diff --git a/tests/it_url.t b/tests/it_url.t index a1caaaa..6ece8d8 100755 --- a/tests/it_url.t +++ b/tests/it_url.t @@ -8,7 +8,7 @@ $url = new it_url('HTTP://falcon:joshua@www.Relog.CH:80/default.asp'); is( $url->url, - 'http://www.relog.ch/', + 'http://www.relog.ch/default.asp', '$url->url' ); @@ -38,7 +38,7 @@ is( is( $url->path, - '', + 'default.asp', '$url->path' ); |