"fix from belu-at-upd19.lcs-internet-akademie.de to allow user names including dots"

This commit is contained in:
Ralf Becker 2007-12-04 05:24:15 +00:00
parent c4bb7046a3
commit 0bea253fc7

View File

@ -237,7 +237,7 @@
// try owner + base for a personal vircal request // 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_pathname = $matches[0];
$reqvircal_owner = $matches[1]; $reqvircal_owner = $matches[1];