From: hickert Date: Mon, 26 Jun 2006 08:28:06 +0000 (+0000) Subject: Added ^$ to true/false mapping X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=117a90a57ac536eea3969ae8be9cdbcfc40dc975;p=gosa.git Added ^$ to true/false mapping git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@3892 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/include/class_config.inc b/include/class_config.inc index 900e7c80a..9cca396b6 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("/(true|yes)/i",$value)){ + if(preg_match("/^(true|yes)$/i",$value)){ $attrs[$name] = "true"; - }elseif(preg_match("/(false|no)/i",$value)){ + }elseif(preg_match("/^(false|no)$/i",$value)){ $attrs[$name] = "false"; } }