Skip to content

Commit 21546e1

Browse files
committedMar 12, 2012
Undoing patch for removing query information from path_info. Helps to keep ; and ? straight when building URLs by hand.
1 parent 7656276 commit 21546e1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎lib/WebGUI/Session/Url.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,7 @@ sub getRequestedUrl {
325325
my $self = shift;
326326
unless ($self->{_requestedUrl}) {
327327
my $path_info = $self->session->request->path_info;
328-
$path_info =~ s/\?.*//;
328+
#$path_info =~ s/\?.*//;
329329
$self->{_requestedUrl} = decode_utf8($path_info);
330330
}
331331
return $self->{_requestedUrl};

0 commit comments

Comments
 (0)