Re: [URI 1.10] patch to URI/URL.pm

Gisle Aas (gisle@activestate.com)
22 Jan 2001 18:39:38 -0800


Abhijit Menon-Sen <ams@wiw.org> writes:

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

Applied.  Where did you find this documented?

Regards,
Gisle


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