Code

Updated shares to support german umlauts
authorhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Thu, 11 Oct 2007 13:40:28 +0000 (13:40 +0000)
committerhickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8>
Thu, 11 Oct 2007 13:40:28 +0000 (13:40 +0000)
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@7520 594d385d-05f5-0310-b6e9-bd551577e9d8

plugins/admin/systems/class_servNfs.inc

index 37597d03cbed8950c1cac87880911c9314d4dae6..b53922d48c913cd03d009fa632ae46c7f5035809 100644 (file)
@@ -186,7 +186,7 @@ class servnfs extends plugin
 
     // only 0-9a-z
     if(!$this->is_edit){
-      if(!preg_match("/^[a-z0-9\._]+$/i",$this->name)){
+      if(!preg_match("/^[a-z0-9\._äüö]*$/ui",$this->name)){
         $message[]=_("Please specify a valid name for your share.");
       }
       if(empty($this->name)){
@@ -194,11 +194,11 @@ class servnfs extends plugin
       }
     }
 
-    if(preg_match("/[^a-z0-9äöü._+ -]+/i",$this->description)){
+    if(preg_match("/^[a-z0-9\._äüö]*$/ui",$this->description)){
       $message[]=_("Description contains invalid characters.");
     }
 
-    if(preg_match("/[^a-z0-9._+ -]/i",$this->volume)){
+    if(preg_match("/^[a-z0-9\._äüö]*$/ui",$this->volume)){
       $message[]=_("Volume contains invalid characters.");
     }
 
@@ -206,7 +206,7 @@ class servnfs extends plugin
       $message[]=_("Path contains invalid characters.");
     }
 
-    if(preg_match("/[^a-z0-9\.,=_+ -]/i",$this->option)){
+    if(preg_match("/^[a-z0-9\._äüö,=\+ ]*$/ui",$this->option)){
       $message[]=_("Option contains invalid characters.");
     }