diff --git a/core/attributedef.class.inc.php b/core/attributedef.class.inc.php index 25dc4390b..d3e5b1273 100644 --- a/core/attributedef.class.inc.php +++ b/core/attributedef.class.inc.php @@ -1259,6 +1259,10 @@ class AttributeBoolean extends AttributeInteger { return $sValue ? '1' : '0'; } + public function GetAsCSV($sValue, $sSeparator = ',', $sTextQualifier = '"', $oHostObject = null, $bLocalize = true) + { + return $sValue ? '1' : '0'; + } } /**