Revert "SOLR-11296: Spellcheck parameters not working in new UI" due to wrong commit message

This reverts commit bb2405a
This commit is contained in:
Jan Høydahl 2018-12-14 15:29:27 +01:00
parent bb2405aec8
commit f8fcdbb208
2 changed files with 1 additions and 3 deletions

View File

@ -177,8 +177,6 @@ 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
----------------------

View File

@ -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 + "=" + encodeURIComponent(params[key][i]));
qs.push(key + "=" + params[key][i]);
}
}
}