X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=blobdiff_plain;f=lib%2FCatalyst%2FDispatchType%2FPath.pm;h=95ad12b1701f8ed1c9036e6c7a502eff66a735ac;hp=38719ea7beddf7e6aa57acb07d927c80d3bdf803;hb=88e5a8b0c4d28e46b8ba6b6b9567063e57af9063;hpb=9868e0a0023cc8b598d60f150ea367e0056a65f3 diff --git a/lib/Catalyst/DispatchType/Path.pm b/lib/Catalyst/DispatchType/Path.pm index 38719ea..95ad12b 100644 --- a/lib/Catalyst/DispatchType/Path.pm +++ b/lib/Catalyst/DispatchType/Path.pm @@ -61,7 +61,7 @@ sub list { my $display_path = "/$path/$parts"; $display_path =~ s{/{1,}}{/}g; - $display_path =~ s/%([0-9A-Fa-f]{2})/chr(hex($1))/eg; # deconvert urlencoded for pretty view + $display_path =~ s/%([0-9A-Fa-f]{2})/chr(hex($1))/eg; # deconvert urlencoded for pretty view $display_path = decode_utf8 $display_path; # URI does encoding $paths->row( $display_path, "/$action" ); }