Update of /cvsroot/thyapi/thyapi/thyutils
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24843/thyutils
Modified Files:
thyxmlrpcprotocol.js
Log Message:
Commiting file additions and modification from SVN revision 1940 to 1941...
Changes made by vinicius on 2005-09-12 21:55:29 +0200 (Mon, 12 Sep 2005) corresponding to SVN revision 1941 with message:
XMLRPC Protocol fix - now can receive not just only object
Index: thyxmlrpcprotocol.js
===================================================================
RCS file: /cvsroot/thyapi/thyapi/thyutils/thyxmlrpcprotocol.js,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** thyxmlrpcprotocol.js 8 Sep 2005 14:59:40 -0000 1.5
--- thyxmlrpcprotocol.js 12 Sep 2005 19:39:12 -0000 1.6
***************
*** 104,108 ****
}
! if (!data || typeof(data) != 'object')
{
//TODO: ERROR Handling
--- 104,108 ----
}
! if (!data) // || typeof(data) != 'object')
{
//TODO: ERROR Handling
|