diff options
author | Siri Hansen <[email protected]> | 2012-05-15 17:49:46 +0200 |
---|---|---|
committer | Siri Hansen <[email protected]> | 2012-05-16 11:32:28 +0200 |
commit | dd0d187b13dfa6451e5044bcb0005cc399ebf6ab (patch) | |
tree | 113d0ff72f0c702573eb595991d2e0ea0cd4fd1c /lib/observer/src | |
parent | a1a8c859540dae42ac287a495301f7e6317ff3c3 (diff) | |
download | otp-dd0d187b13dfa6451e5044bcb0005cc399ebf6ab.tar.gz otp-dd0d187b13dfa6451e5044bcb0005cc399ebf6ab.tar.bz2 otp-dd0d187b13dfa6451e5044bcb0005cc399ebf6ab.zip |
[crashdump_viewer] URL encode module names in link to loaded module details
Diffstat (limited to 'lib/observer/src')
-rw-r--r-- | lib/observer/src/crashdump_viewer_html.erl | 4 |
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)]). |