[Zmx-cvs-commit] zmx XML_js.as,1.10,1.11
Brought to you by:
sspickle
|
From: Steve S. <ssp...@us...> - 2005-05-27 14:15:59
|
Update of /cvsroot/zmx/zmx In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv31085 Modified Files: XML_js.as Log Message: make sure nulls never get sent.. Index: XML_js.as =================================================================== RCS file: /cvsroot/zmx/zmx/XML_js.as,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** XML_js.as 27 Aug 2003 16:46:30 -0000 1.10 --- XML_js.as 27 May 2005 14:15:50 -0000 1.11 *************** *** 60,63 **** --- 60,66 ---- } } + else if (result == 'undefined') { + result = null; + } return result; } |