Fixing the boolean bug.
This commit is contained in:
parent
771afcb5f1
commit
f4d6fb87ee
@ -146,7 +146,11 @@ EOD;
|
|||||||
$cellXML .= ' t="s"><v>' . $sharedStringId . '</v></c>';
|
$cellXML .= ' t="s"><v>' . $sharedStringId . '</v></c>';
|
||||||
}
|
}
|
||||||
} else if (CellHelper::isBoolean($cellValue)) {
|
} else if (CellHelper::isBoolean($cellValue)) {
|
||||||
$cellXML .= ' t="b"><v>' . $cellValue . '</v></c>';
|
if ($cellValue === true) {
|
||||||
|
$cellXML .= ' t="b"><v>1</v></c>';
|
||||||
|
} else {
|
||||||
|
$cellXML .= ' t="b"><v>0</v></c>';
|
||||||
|
}
|
||||||
} else if (CellHelper::isNumeric($cellValue)) {
|
} else if (CellHelper::isNumeric($cellValue)) {
|
||||||
$cellXML .= '><v>' . $cellValue . '</v></c>';
|
$cellXML .= '><v>' . $cellValue . '</v></c>';
|
||||||
} else if (empty($cellValue)) {
|
} else if (empty($cellValue)) {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user