mirror of
https://github.com/nextcloud/server.git
synced 2026-06-11 01:30:50 -04:00
Merge pull request #34381 from nextcloud/backport/34289/stable24
[stable24] Url encode the web dav url for copying
This commit is contained in:
commit
c468d82e8e
1 changed files with 1 additions and 1 deletions
|
|
@ -265,7 +265,7 @@ class ViewController extends Controller {
|
|||
$nav->assign('quota', $storageInfo['quota']);
|
||||
$nav->assign('usage_relative', $storageInfo['relative']);
|
||||
|
||||
$nav->assign('webdav_url', \OCP\Util::linkToRemote('dav/files/' . $user));
|
||||
$nav->assign('webdav_url', \OCP\Util::linkToRemote('dav/files/' . rawurlencode($user)));
|
||||
|
||||
$contentItems = [];
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue