Skip to content

Commit

Permalink
Undoing patch for removing query information from path_info. Helps to…
Browse files Browse the repository at this point in the history
… keep ; and ? straight when building URLs by hand.
  • Loading branch information
perlDreamer committed Mar 12, 2012
1 parent 7656276 commit 21546e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/WebGUI/Session/Url.pm
Expand Up @@ -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};
Expand Down

0 comments on commit 21546e1

Please sign in to comment.