Skip to content

Commit

Permalink
html escape the console log in refresh
Browse files Browse the repository at this point in the history
fixes bug 977944

(cherry picked from commit ab2e275)

Change-Id: Ic6135ebc58b6c45d6336f0833717086e43d7cccb
  • Loading branch information
jdsn authored and russellb committed Apr 17, 2012
1 parent a58db85 commit 7f8c788
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion horizon/static/horizon/js/horizon.js
Expand Up @@ -284,7 +284,7 @@ var Horizon = function() {
data: data,
method: 'get',
success: function(response_body) {
$('pre.logs').html(response_body);
$('pre.logs').text(response_body);
},
error: function(response) {
if(via_user_submit) {
Expand Down

0 comments on commit 7f8c788

Please sign in to comment.