mirror of
https://github.com/Kozea/Radicale.git
synced 2025-06-26 16:45:52 +00:00
Remove user from URL
It's not supported by many clients.
This commit is contained in:
parent
37c9a1da18
commit
ee214d6697
1 changed files with 1 additions and 1 deletions
|
@ -667,7 +667,7 @@ function CollectionsScene(user, password, collection, onerror) {
|
||||||
});
|
});
|
||||||
title_form.textContent = collection.displayname || collection.href;
|
title_form.textContent = collection.displayname || collection.href;
|
||||||
description_form.textContent = collection.description;
|
description_form.textContent = collection.description;
|
||||||
var href = SERVER.replace("//", "//" + encodeURIComponent(user) + "@") + collection.href;
|
var href = SERVER + collection.href;
|
||||||
url_form.href = href;
|
url_form.href = href;
|
||||||
url_form.textContent = href;
|
url_form.textContent = href;
|
||||||
delete_btn.onclick = function(ev) {return ondelete(collection);};
|
delete_btn.onclick = function(ev) {return ondelete(collection);};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue