Fix urlencoding of unicode chars in resource DN (#4262)
This commit is contained in:
parent
362fcf7a4f
commit
859dc5ab98
1 changed files with 1 additions and 1 deletions
|
@ -2217,7 +2217,7 @@ function rcube_calendar_ui(settings)
|
|||
}
|
||||
|
||||
// load resource calendar
|
||||
resources_events_source.url = "./?_task=calendar&_action=resources-calendar&_id="+escape(resource.ID);
|
||||
resources_events_source.url = "./?_task=calendar&_action=resources-calendar&_id="+urlencode(resource.ID);
|
||||
$(rcmail.gui_objects.resourceinfocalendar).fullCalendar('addEventSource', resources_events_source);
|
||||
}
|
||||
};
|
||||
|
|
Loading…
Add table
Reference in a new issue