url encode id

This commit is contained in:
Arthur Schiwon 2016-01-29 13:28:17 +01:00
parent 01cdc70f9c
commit 6dc793338a

View file

@ -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;
}