mirror of https://github.com/apache/lucene.git
SOLR-11296: Spellcheck parameters not working in new UI
(cherry picked from commit 62edbf2e7d
)
This commit is contained in:
parent
62edbf2e7d
commit
bb2405aec8
|
@ -177,6 +177,8 @@ Bug Fixes
|
|||
|
||||
* SOLR-11296: Spellcheck parameters not working in new UI (Matt Pearce via janhoy)
|
||||
|
||||
* SOLR-10975: New Admin UI Query does not URL-encode the query produced in the URL box (janhoy)
|
||||
|
||||
Improvements
|
||||
----------------------
|
||||
|
||||
|
|
|
@ -235,7 +235,7 @@ solrAdminServices.factory('System',
|
|||
for (key in params) {
|
||||
if (key != "core" && key != "handler") {
|
||||
for (var i in params[key]) {
|
||||
qs.push(key + "=" + params[key][i]);
|
||||
qs.push(key + "=" + encodeURIComponent(params[key][i]));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue