SOLR-5174: Admin UI - Query View doesn't highlight (json) Result if it contains HTML Tags

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1515527 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Stefan Matheis 2013-08-19 17:36:20 +00:00
parent 544f490d7b
commit cfbf8082d2
2 changed files with 4 additions and 1 deletions

View File

@ -138,6 +138,9 @@ Bug Fixes
* SOLR-5171: SOLR Admin gui works in IE9, breaks in IE10. (Joseph L Howard via * SOLR-5171: SOLR Admin gui works in IE9, breaks in IE10. (Joseph L Howard via
steffkes) steffkes)
* SOLR-5174: Admin UI - Query View doesn't highlight (json) Result if it
contains HTML Tags (steffkes)
Optimizations Optimizations
---------------------- ----------------------

View File

@ -552,7 +552,7 @@ var solr_admin = function( app_config )
json_str = JSON.stringify( JSON.parse( json_str ), undefined, 2 ); json_str = JSON.stringify( JSON.parse( json_str ), undefined, 2 );
} }
return json_str; return json_str.esc();
}; };
this.format_number = function format_number( number ) this.format_number = function format_number( number )