From: hickert Date: Mon, 26 Jun 2006 08:23:53 +0000 (+0000) Subject: Updated config true/false mapping X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=2f793226fa16ad60cbecf8ddcdbb56a22e883713;p=gosa.git Updated config true/false mapping git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@3891 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/include/class_config.inc b/include/class_config.inc index b79df2426..900e7c80a 100644 --- a/include/class_config.inc +++ b/include/class_config.inc @@ -93,9 +93,9 @@ class config { /* yes/no to true/false and upper case TRUE to true and so on*/ foreach($attrs as $name => $value){ - if((preg_match("/^yes$/i",$value)) || (preg_match("/^true$/i",$value))){ + if(preg_match("/(true|yes)/i",$value)){ $attrs[$name] = "true"; - }elseif((preg_match("/^no$/i",$value)) || (preg_match("/^false$/i",$value))){ + }elseif(preg_match("/(false|no)/i",$value)){ $attrs[$name] = "false"; } }