From 0bea253fc7df40ca0a4baf07c4aff7dd5dbf1d3f Mon Sep 17 00:00:00 2001 From: Ralf Becker Date: Tue, 4 Dec 2007 05:24:15 +0000 Subject: [PATCH] "fix from belu-at-upd19.lcs-internet-akademie.de to allow user names including dots" --- icalsrv.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/icalsrv.php b/icalsrv.php index 2d465c3263..37bb40d2d1 100644 --- a/icalsrv.php +++ b/icalsrv.php @@ -237,7 +237,7 @@ // try owner + base for a personal vircal request } - elseif(preg_match('#^/([\w]+)(/[^<^>^?]+)$#', $_SERVER['PATH_INFO'], $matches)) + elseif(preg_match('#^/([\w.]+)(/[^<^>^?]+)$#', $_SERVER['PATH_INFO'], $matches)) { $reqvircal_pathname = $matches[0]; $reqvircal_owner = $matches[1];