summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: aef97bc)
raw | patch | inline | side by side (parent: aef97bc)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Fri, 23 Jul 2010 13:05:14 +0000 (13:05 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Fri, 23 Jul 2010 13:05:14 +0000 (13:05 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@19088 594d385d-05f5-0310-b6e9-bd551577e9d8
gosa-plugins/gofon/gofon/macro/class_gofonMacroParameters.inc | patch | blob | history |
diff --git a/gosa-plugins/gofon/gofon/macro/class_gofonMacroParameters.inc b/gosa-plugins/gofon/gofon/macro/class_gofonMacroParameters.inc
index 12456708310de1042ea5ceeeba0ce492efa2a4c4..b825d97efd0b4edb2d3aeb6cf39b35870d50fa5c 100644 (file)
$message= plugin::check();
foreach($this->goFonMacroParameter as $key=>$val){
- if((strstr($val['default'],"!"))||(strstr($val['default'],"#"))) {
- $message[] = sprintf(_("Parameter %s contains invalid character. '!,#' is used as delimiter!"),$val['name']);
+
+ $v1 = utf8_encode($val['default']);
+ $v2 = utf8_decode($val['default']);
+ if($v1 != $v2){
+ $allowed = preg_quote('[]()-+_,.;:/?*\ ','/');
+ $message[] = msgPool::invalid(sprintf(_("Parameter %s contains invalid character!"), $val['name']),
+ $val['default'],"/[a-z0-9{$allowed}]/i");
}
switch($val['type']){
case 'bool' : $possible = array("","0","1");