mirror of
https://github.com/redmine/redmine.git
synced 2025-11-06 13:25:44 +01:00
Fixes error in autocomplete (@ActionController::BadRequest (Invalid query parameters: invalid %-encoding (%)@) (#40237).
Patch by Abe Tomoaki (@abetomo). git-svn-id: https://svn.redmine.org/redmine/trunk@22740 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
@@ -1167,7 +1167,7 @@ function inlineAutoComplete(element) {
|
|||||||
if (event.target.type === 'text' && $(element).attr('autocomplete') != 'off') {
|
if (event.target.type === 'text' && $(element).attr('autocomplete') != 'off') {
|
||||||
$(element).attr('autocomplete', 'off');
|
$(element).attr('autocomplete', 'off');
|
||||||
}
|
}
|
||||||
remoteSearch(getDataSource('issues') + text, function (issues) {
|
remoteSearch(getDataSource('issues') + encodeURIComponent(text), function (issues) {
|
||||||
return cb(issues);
|
return cb(issues);
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
@@ -1189,7 +1189,7 @@ function inlineAutoComplete(element) {
|
|||||||
{
|
{
|
||||||
trigger: '[[',
|
trigger: '[[',
|
||||||
values: function (text, cb) {
|
values: function (text, cb) {
|
||||||
remoteSearch(getDataSource('wiki_pages') + text, function (wikiPages) {
|
remoteSearch(getDataSource('wiki_pages') + encodeURIComponent(text), function (wikiPages) {
|
||||||
return cb(wikiPages);
|
return cb(wikiPages);
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
@@ -1211,7 +1211,7 @@ function inlineAutoComplete(element) {
|
|||||||
values: function (text, cb) {
|
values: function (text, cb) {
|
||||||
const url = getDataSource('users');
|
const url = getDataSource('users');
|
||||||
if (url) {
|
if (url) {
|
||||||
remoteSearch(url + text, function (users) {
|
remoteSearch(url + encodeURIComponent(text), function (users) {
|
||||||
return cb(users);
|
return cb(users);
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user