git-svn-id: https://svn.php.net/repository/pear/packages/Spreadsheet_Excel_Writer/trunk@141730 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Mika Tuupola 2003-10-03 12:59:30 +00:00
parent 2ff94db2dc
commit e370a77911
1 changed files with 2 additions and 0 deletions

View File

@ -1117,6 +1117,7 @@ class Spreadsheet_Excel_Writer_Worksheet extends Spreadsheet_Excel_Writer_BIFFwr
function writeRow($row, $col, $val, $format=0)
{
$retval = '';
if (is_array($val)) {
foreach($val as $v) {
if (is_array($v)) {
@ -1145,6 +1146,7 @@ class Spreadsheet_Excel_Writer_Worksheet extends Spreadsheet_Excel_Writer_BIFFwr
function writeCol($row, $col, $val, $format=0)
{
$retval = '';
if (is_array($val)) {
foreach($val as $v) {
$this->write($row, $col, $v, $format);