mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-07 16:44:20 +01:00
Fix missing conversion of 0 -> No
This commit is contained in:
parent
5b94061086
commit
c09a9aa61c
@ -359,7 +359,7 @@ class importexport_export_csv implements importexport_iface_export_record
|
||||
}
|
||||
}
|
||||
foreach((array)$fields['select-bool'] as $name) {
|
||||
if($record->$name != null) {
|
||||
if($record->$name !== null) {
|
||||
$record->$name = $record->$name ? lang('Yes') : lang('No');
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user