SOLR-3238: decode query-params for analysis

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1339114 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Stefan Matheis 2012-05-16 11:15:41 +00:00
parent b550e5a30a
commit 04486d4454
1 changed files with 1 additions and 1 deletions

View File

@ -129,7 +129,7 @@ sammy.get
{
fields++;
$( '[name="' + key + '"]', analysis_form )
.val( context.params[key] );
.val( decodeURIComponent( context.params[key].replace( /\+/g, '%20' ) ) );
}
}