aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGit'Fellow <12234510+solracsf@users.noreply.github.com>2025-03-26 08:14:52 +0100
committerGitHub <noreply@github.com>2025-03-26 08:14:52 +0100
commit5dcec08e98e24cc6aeab2326887d556ea72584ca (patch)
treeb93641af3c73c323516869ff9baea9b83a095cf2
parentcb7c82c13d5d6cf0b21b4499365460c605936c5a (diff)
downloadnextcloud-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.php2
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) {