mirror of https://github.com/apache/lucene.git
Revert "SOLR-11296: Spellcheck parameters not working in new UI" due to wrong commit message
This reverts commit bb2405a
This commit is contained in:
parent
bb2405aec8
commit
f8fcdbb208
|
@ -177,8 +177,6 @@ Bug Fixes
|
||||||
|
|
||||||
* SOLR-11296: Spellcheck parameters not working in new UI (Matt Pearce via janhoy)
|
* 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
|
Improvements
|
||||||
----------------------
|
----------------------
|
||||||
|
|
||||||
|
|
|
@ -235,7 +235,7 @@ solrAdminServices.factory('System',
|
||||||
for (key in params) {
|
for (key in params) {
|
||||||
if (key != "core" && key != "handler") {
|
if (key != "core" && key != "handler") {
|
||||||
for (var i in params[key]) {
|
for (var i in params[key]) {
|
||||||
qs.push(key + "=" + encodeURIComponent(params[key][i]));
|
qs.push(key + "=" + params[key][i]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue