[URI 1.10] patch to URI/URL.pm

Abhijit Menon-Sen (ams@wiw.org)
Mon, 22 Jan 2001 09:49:29 +0530


URI::URL::crack returns $uri->path instead of epath (as it is documented
to do). I've appended a trivial patch to fix the problem (thanks to
Thomas Robertson for reporting it).

- ams

--- URL.pm~	Mon Jan 22 09:33:56 2001
+++ URL.pm	Mon Jan 22 09:34:07 2001
@@ -74,7 +74,7 @@
      $self->_try("password"),
      $self->_try("host"),
      $self->_try("port"),
-     $self->_try("path"),
+     $self->_try("epath"),
      $self->_try("params"),
      $self->_try("query"),
      scalar($self->fragment),