From: Leif W <war...@us...> - 2003-09-03 20:45:18
|
[*] Fixed an assignment where it should be an equality comparison. Continuing my ioelmsrv.soda.jscript.asp -> ioelmsrv.soda.php conversion again. Line 573 in ioelmsrv.jscript.asp has this: if((v+"")="NaN") v=null; Which has an assignment where it should be an equality comparison. if((v+"")=="NaN") v=null; Made the simple change and committed to CVS. Leif |