summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: b50d027)
raw | patch | inline | side by side (parent: b50d027)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Thu, 11 Oct 2007 13:40:28 +0000 (13:40 +0000) | ||
committer | hickert <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 | patch | blob | history |
index 37597d03cbed8950c1cac87880911c9314d4dae6..b53922d48c913cd03d009fa632ae46c7f5035809 100644 (file)
// 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)){
}
}
- 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.");
}
$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.");
}