From: psc Date: Wed, 30 Sep 2009 15:14:10 +0000 (+0000) Subject: Really fix the regular expression for testing of share- X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=62482c58bcc249bdffac145a66357ceb1d88cf6d;hp=33b6e0aa8f51d9e8aa4d34cdfeb7e0f51435c064;p=gosa.git Really fix the regular expression for testing of share- names and change the word of the error message (Trac: #1960) git-svn-id: https://oss.gonicus.de/repositories/gosa/branches/2.6-lhm@14424 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 6718d009d..119ce0795 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 $message[]= msgPool::invalid(_("Name"),$this->name,"/[a-z0-9\._äüö]\$/ui"); } else { - if (!preg_match("/^[^\$]*\$$/", $this->name)) { + if (!preg_match("/^[^\$]+[\$]*$/", $this->name)) { $message[] = _("Hidden shares must have the '$' at the end of the name!"); } }