mirror of
https://github.com/Kozea/Radicale.git
synced 2025-08-10 18:40:53 +00:00
Merge pull request #1589 from pbiering/fix-webcal-xml-url-encoding-issue-1582
Fix webcal xml url encoding issue 1582
This commit is contained in:
commit
a8baea9b19
1 changed files with 2 additions and 1 deletions
|
@ -1,6 +1,7 @@
|
||||||
/**
|
/**
|
||||||
* This file is part of Radicale Server - Calendar Server
|
* This file is part of Radicale Server - Calendar Server
|
||||||
* Copyright © 2017-2024 Unrud <unrud@outlook.com>
|
* Copyright © 2017-2024 Unrud <unrud@outlook.com>
|
||||||
|
* Copyright © 2023-2024 Matthew Hana <matthew.hana@gmail.com>
|
||||||
*
|
*
|
||||||
* This program is free software: you can redistribute it and/or modify
|
* This program is free software: you can redistribute it and/or modify
|
||||||
* it under the terms of the GNU General Public License as published by
|
* it under the terms of the GNU General Public License as published by
|
||||||
|
@ -394,7 +395,7 @@ function create_edit_collection(user, password, collection, create, callback) {
|
||||||
calendar_color = escape_xml(collection.color + (collection.color ? "ff" : ""));
|
calendar_color = escape_xml(collection.color + (collection.color ? "ff" : ""));
|
||||||
calendar_description = escape_xml(collection.description);
|
calendar_description = escape_xml(collection.description);
|
||||||
resourcetype = '<CS:subscribed />';
|
resourcetype = '<CS:subscribed />';
|
||||||
calendar_source = collection.source;
|
calendar_source = escape_xml(collection.source);
|
||||||
} else {
|
} else {
|
||||||
calendar_color = escape_xml(collection.color + (collection.color ? "ff" : ""));
|
calendar_color = escape_xml(collection.color + (collection.color ? "ff" : ""));
|
||||||
calendar_description = escape_xml(collection.description);
|
calendar_description = escape_xml(collection.description);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue