Menu

#28 Bug in func.utils.inc on Windooze

open
nobody
None
5
2005-06-09
2005-06-09
No

Hello,

At first i want to thank the developers of this classes for
the great work. I had no problems parsing my
Excel-files......

I found a little bug on my windooze-machine in
func.utils.inc line 100. the unpack creates and array
with an ['']-element normally. but on my
windooze-machine it created an array with an
[1]-element. i found this out through a print_r($tmp);

i fixed it already (line 100 and a new line 101):

if($tmp['']) $value = $tmp[''];
elseif($tmp[1]) $value = $tmp[1];

this works for me.......

best wishes, Stefan Jelner

Discussion


Log in to post a comment.