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),

Reply via email to