From: psc Date: Fri, 2 Oct 2009 09:23:07 +0000 (+0000) Subject: Followup Commit for r14465: X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=4b8a3bd9b5d549469f73d7e81c9d85c949f2be6a;p=gosa.git Followup Commit for r14465: Change regular expression in error message, too. git-svn-id: https://oss.gonicus.de/repositories/gosa/branches/2.6-lhm@14467 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 a57a47ac6..ebe89524d 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 @@ -203,7 +203,7 @@ class servnfs extends plugin $message[]= msgPool::required(_("Name")); } if(!preg_match("/^[a-z0-9\._äüö]*$/ui",$this->name)){ - $message[]= msgPool::invalid(_("Name"),$this->name,"/[a-z0-9\._äüö]\$/ui"); + $message[]= msgPool::invalid(_("Name"),$this->name,"/[a-z0-9\._äüö]/ui"); } }