hi.
I used Catalyst comfortably.
I update catalyst module to recent version (5.80018) yesterday.
[before updated]
my $request = Catalyst::Request->new( {
base => URI->new('http://127.0.0.1/foo')
} );
Catalyst::uri_for( $context, '/', 'bar/baz' )->as_string; # http://127.0.0.1/foo/bar/baz
[after updated]
my $request = Catalyst::Request->new( {
base => URI->new('http://127.0.0.1/foo')
} );
Catalyst::uri_for( $context, '/', 'bar/baz' )->as_string; # http://127.0.0.1/foo/bar%2Fbaz
I suspect different result from
http://dev.catalystframework.org/svnweb/Catalyst/diff/Catalyst-Runtime/5.80/trunk/lib/Catalyst.pm?rev1811;rev2812
Is this correct result?
Cheers,
bokutin