From: psc Date: Fri, 2 Oct 2009 09:09:42 +0000 (+0000) Subject: Disallow $ in share _names_ again X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=ffcc428ec0085864f1b0efc88721e066d0a04d5a;p=gosa.git Disallow $ in share _names_ again git-svn-id: https://oss.gonicus.de/repositories/gosa/branches/2.6-lhm@14465 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/trunk/gosa-plugins/goto/admin/systems/services/nfs/class_servNfs.inc b/trunk/gosa-plugins/goto/admin/systems/services/nfs/class_servNfs.inc index aee4d9662..a57a47ac6 100644 --- a/trunk/gosa-plugins/goto/admin/systems/services/nfs/class_servNfs.inc +++ b/trunk/gosa-plugins/goto/admin/systems/services/nfs/class_servNfs.inc @@ -202,7 +202,7 @@ class servnfs extends plugin if(empty($this->name)){ $message[]= msgPool::required(_("Name")); } - if(!preg_match("/^[a-z0-9\._äüö\$]*$/ui",$this->name)){ + if(!preg_match("/^[a-z0-9\._äüö]*$/ui",$this->name)){ $message[]= msgPool::invalid(_("Name"),$this->name,"/[a-z0-9\._äüö]\$/ui"); } }