mirror of
https://github.com/nextcloud/server.git
synced 2026-06-09 08:44:07 -04:00
url encode id
This commit is contained in:
parent
01cdc70f9c
commit
6dc793338a
1 changed files with 1 additions and 1 deletions
|
|
@ -105,7 +105,7 @@ class CommentPropertiesPlugin extends ServerPlugin {
|
|||
return null;
|
||||
}
|
||||
$href = substr_replace($href, '/dav/', $entryPoint);
|
||||
$href .= 'comments/files/' . $node->getId();
|
||||
$href .= 'comments/files/' . rawurldecode($node->getId());
|
||||
return $href;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue