Undoing patch for removing query information from path_info. Helps to keep ; and ? straight when building URLs by hand.

This commit is contained in:
Colin Kuskie 2012-03-12 13:59:45 -07:00
parent 7656276203
commit 21546e1821

View file

@ -325,7 +325,7 @@ sub getRequestedUrl {
my $self = shift;
unless ($self->{_requestedUrl}) {
my $path_info = $self->session->request->path_info;
$path_info =~ s/\?.*//;
#$path_info =~ s/\?.*//;
$self->{_requestedUrl} = decode_utf8($path_info);
}
return $self->{_requestedUrl};