* fix bug #59
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:
parent
2ff94db2dc
commit
e370a77911
|
|
@ -1117,6 +1117,7 @@ class Spreadsheet_Excel_Writer_Worksheet extends Spreadsheet_Excel_Writer_BIFFwr
|
||||||
|
|
||||||
function writeRow($row, $col, $val, $format=0)
|
function writeRow($row, $col, $val, $format=0)
|
||||||
{
|
{
|
||||||
|
$retval = '';
|
||||||
if (is_array($val)) {
|
if (is_array($val)) {
|
||||||
foreach($val as $v) {
|
foreach($val as $v) {
|
||||||
if (is_array($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)
|
function writeCol($row, $col, $val, $format=0)
|
||||||
{
|
{
|
||||||
|
$retval = '';
|
||||||
if (is_array($val)) {
|
if (is_array($val)) {
|
||||||
foreach($val as $v) {
|
foreach($val as $v) {
|
||||||
$this->write($row, $col, $v, $format);
|
$this->write($row, $col, $v, $format);
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue