diff options
author | Git'Fellow <12234510+solracsf@users.noreply.github.com> | 2025-03-26 08:14:52 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-03-26 08:14:52 +0100 |
commit | 5dcec08e98e24cc6aeab2326887d556ea72584ca (patch) | |
tree | b93641af3c73c323516869ff9baea9b83a095cf2 | |
parent | cb7c82c13d5d6cf0b21b4499365460c605936c5a (diff) | |
download | nextcloud-server-allowUnderCustLink.tar.gz nextcloud-server-allowUnderCustLink.zip |
fix(shares): Allow underscores on custom linksallowUnderCustLink
Signed-off-by: Git'Fellow <12234510+solracsf@users.noreply.github.com>
-rw-r--r-- | apps/dav/appinfo/v2/publicremote.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/dav/appinfo/v2/publicremote.php b/apps/dav/appinfo/v2/publicremote.php index bbffd280115..27b8716f6ae 100644 --- a/apps/dav/appinfo/v2/publicremote.php +++ b/apps/dav/appinfo/v2/publicremote.php @@ -77,7 +77,7 @@ $filesDropPlugin = new FilesDropPlugin(); // Define root url with /public.php/dav/files/TOKEN /** @var string $baseuri defined in public.php */ -preg_match('/(^files\/[a-z0-9-]+)/i', substr($requestUri, strlen($baseuri)), $match); +preg_match('/(^files\/[a-z0-9-_]+)/i', substr($requestUri, strlen($baseuri)), $match); $baseuri = $baseuri . $match[0]; $server = $serverFactory->createServer($baseuri, $requestUri, $authPlugin, function (\Sabre\DAV\Server $server) use ($authBackend, $linkCheckPlugin, $filesDropPlugin) { |