From e6beeaa93382f6cdc4cadf7c1e572bfd88d23f2a Mon Sep 17 00:00:00 2001 From: Roland Gruber Date: Sat, 22 Jan 2005 10:57:48 +0000 Subject: [PATCH] added \"$\" to home directory regex --- lam/lib/account.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lam/lib/account.inc b/lam/lib/account.inc index 5affdfa8..8a4e6a06 100644 --- a/lam/lib/account.inc +++ b/lam/lib/account.inc @@ -464,7 +464,7 @@ function get_preg($argument, $regexp) { $pregexpr = '/^([[:alnum:]\\.\\ \\_-])*$/u'; break; case "homeDirectory": // Homapath, /path/...... - $pregexpr = '/^([\/]([[:alnum:]\\.\\ \\_-])+)+$/u'; + $pregexpr = '/^([\/]([[:alnum:]\\$\\.\\ \\_-])+)+$/u'; break; case "digit": // Normal number $pregexpr = '/^[[:digit:]]*$/';