Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
best-practical
rt-extension-jsgantt
Commits
3227422e
Commit
3227422e
authored
Feb 07, 2012
by
sunnavy
Browse files
decode $m->request_args->{Query} first to avoid double encode
parent
a53f343f
Changes
1
Hide whitespace changes
Inline
Side-by-side
html/Callbacks/JSGantt/Elements/Tabs/Privileged
View file @
3227422e
...
...
@@ -50,8 +50,9 @@ my $request_path = $HTML::Mason::Commands::r->path_info;
if ( $request_path =~ qr{^/Search/Results.html} ) {
my $tabs = PageMenu;
require Encode;
$tabs->child( 'gantt' => title => loc('Gantt Chart'),
path => '/Search/JSGantt.html?Query=' .$m->request_args->{'Query'} );
path => '/Search/JSGantt.html?Query=' .
Encode::decode_utf8
$m->request_args->{'Query'} );
}
</%INIT>
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment