Submit search string as unicode (#3076)
This commit is contained in:
parent
900aeb7374
commit
81450b627e
1 changed files with 1 additions and 1 deletions
|
@ -3107,7 +3107,7 @@ function rcube_calendar_ui(settings)
|
|||
|
||||
for (var sid in this.calendars) {
|
||||
if (this.calendars[sid]) {
|
||||
this.calendars[sid].url = this.calendars[sid].url.replace(/&q=.+/, '') + '&q='+escape(q);
|
||||
this.calendars[sid].url = this.calendars[sid].url.replace(/&q=.+/, '') + '&q=' + urlencode(q);
|
||||
sources.push(sid);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue