Skip to content
Permalink
Browse files

html escape the console log in refresh

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 7f8c788aa70db98ac904f37fa4197fcabb802942
Showing with 1 addition and 1 deletion.
  1. +1 −1 horizon/static/horizon/js/horizon.js
@@ -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) {

0 comments on commit 7f8c788

Please sign in to comment.