aboutsummaryrefslogtreecommitdiffstats
path: root/lib/observer/src/crashdump_viewer_html.erl
diff options
context:
space:
mode:
authorSiri Hansen <[email protected]>2012-05-21 11:08:58 +0200
committerSiri Hansen <[email protected]>2012-05-21 11:08:58 +0200
commite4717301b73f2d7b2716b625e1b647b35d2815be (patch)
tree23cff0017f351c052d9bd375a57b47644b31adaf /lib/observer/src/crashdump_viewer_html.erl
parent77842e72cb1780ac05b392256da511a7651f1258 (diff)
parentdd0d187b13dfa6451e5044bcb0005cc399ebf6ab (diff)
downloadotp-e4717301b73f2d7b2716b625e1b647b35d2815be.tar.gz
otp-e4717301b73f2d7b2716b625e1b647b35d2815be.tar.bz2
otp-e4717301b73f2d7b2716b625e1b647b35d2815be.zip
Merge branch 'siri/crashdump_viewer/crash-when-hash-in-module-name/OTP-10090' into maint
* siri/crashdump_viewer/crash-when-hash-in-module-name/OTP-10090: [crashdump_viewer] URL encode module names in link to loaded module details
Diffstat (limited to 'lib/observer/src/crashdump_viewer_html.erl')
-rw-r--r--lib/observer/src/crashdump_viewer_html.erl4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/observer/src/crashdump_viewer_html.erl b/lib/observer/src/crashdump_viewer_html.erl
index 24a80b1916..3151b83bfb 100644
--- a/lib/observer/src/crashdump_viewer_html.erl
+++ b/lib/observer/src/crashdump_viewer_html.erl
@@ -1,7 +1,7 @@
%%
%% %CopyrightBegin%
%%
-%% Copyright Ericsson AB 2003-2011. All Rights Reserved.
+%% Copyright Ericsson AB 2003-2012. All Rights Reserved.
%%
%% The contents of this file are subject to the Erlang Public License,
%% Version 1.1, (the "License"); you may not use this file except in
@@ -1394,7 +1394,7 @@ timers_table(Timer) ->
td("ALIGN=right",Time)]).
loaded_mods_table(#loaded_mod{mod=Mod,current_size=CS,old_size=OS}) ->
- tr([td(href(["loaded_mod_details?mod=",Mod],Mod)),
+ tr([td(href(["loaded_mod_details?mod=",http_uri:encode(Mod)],Mod)),
td("ALIGN=right",CS),
td("ALIGN=right",OS)]).