mirror of https://github.com/apache/lucene.git
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:
parent
544f490d7b
commit
cfbf8082d2
|
@ -138,6 +138,9 @@ Bug Fixes
|
|||
* SOLR-5171: SOLR Admin gui works in IE9, breaks in IE10. (Joseph L Howard via
|
||||
steffkes)
|
||||
|
||||
* SOLR-5174: Admin UI - Query View doesn't highlight (json) Result if it
|
||||
contains HTML Tags (steffkes)
|
||||
|
||||
Optimizations
|
||||
----------------------
|
||||
|
||||
|
|
|
@ -552,7 +552,7 @@ var solr_admin = function( app_config )
|
|||
json_str = JSON.stringify( JSON.parse( json_str ), undefined, 2 );
|
||||
}
|
||||
|
||||
return json_str;
|
||||
return json_str.esc();
|
||||
};
|
||||
|
||||
this.format_number = function format_number( number )
|
||||
|
|
Loading…
Reference in New Issue