Code

Really fix the regular expression for testing of share-
authorpsc <psc@594d385d-05f5-0310-b6e9-bd551577e9d8>
Wed, 30 Sep 2009 15:14:10 +0000 (15:14 +0000)
committerpsc <psc@594d385d-05f5-0310-b6e9-bd551577e9d8>
Wed, 30 Sep 2009 15:14:10 +0000 (15:14 +0000)
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

trunk/gosa-plugins/goto/admin/systems/services/nfs/class_servNfs.inc

index 6718d009db5e19f42a817d462f7f1ea8ad7d66c7..119ce07955c615b32e8ef2d3427c6882c4e12d79 100644 (file)
@@ -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!");
         }
       }