From 21546e18218491f781e5e502ddba733f8560d66c Mon Sep 17 00:00:00 2001 From: Colin Kuskie Date: Mon, 12 Mar 2012 13:59:45 -0700 Subject: [PATCH] Undoing patch for removing query information from path_info. Helps to keep ; and ? straight when building URLs by hand. --- lib/WebGUI/Session/Url.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/WebGUI/Session/Url.pm b/lib/WebGUI/Session/Url.pm index 55917c3ef..763ca3c70 100644 --- a/lib/WebGUI/Session/Url.pm +++ b/lib/WebGUI/Session/Url.pm @@ -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};