summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 0414cca)
raw | patch | inline | side by side (parent: 0414cca)
author | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Thu, 23 Jun 2005 08:02:37 +0000 (08:02 +0000) | ||
committer | hickert <hickert@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Thu, 23 Jun 2005 08:02:37 +0000 (08:02 +0000) |
plugins/gofon/macro/class_gofonMacroParameters.inc | patch | blob | history |
diff --git a/plugins/gofon/macro/class_gofonMacroParameters.inc b/plugins/gofon/macro/class_gofonMacroParameters.inc
index d563ecfa2ada185f88e53f26ab389ba820f5ae0f..5379cbc3a2286d677f2e1aa35c98a84b2b8f43e7 100755 (executable)
$message[] = sprintf(_("The parameter %s contains invalid char. '!,#' is used as delimiter"),$val['name']);
}
switch($val['type']){
- case 'bool' : $possible = array("","0","1","true","false");
+ case 'bool' : $possible = array("","0","1");
if(!in_array($val['default'],$possible)) {
$message[] = sprintf(_("The parameter %s has incorrect value for type bool."),$val['name']);
};break;