Author: seba.wagner
Date: Tue Jan 27 02:13:12 2009
New Revision: 1856
Modified:
trunk/openmeetings_lps411/base/remote/rtmpConnection.lzx
Log:
Fixes:
Multi-Param passing from Server to Client
Modified: trunk/openmeetings_lps411/base/remote/rtmpConnection.lzx
==============================================================================
--- trunk/openmeetings_lps411/base/remote/rtmpConnection.lzx (original)
+++ trunk/openmeetings_lps411/base/remote/rtmpConnection.lzx Tue Jan 27
02:13:12 2009
@@ -92,7 +92,8 @@
if (this.subnodes[i] instanceof
lz.netRemoteCallHib){
var t = hib;
this._nc[this.subnodes[i].funcname] = function(
args ){
- return
hib.remoteCallMethod(arguments.callee,args);
+ return
hib.remoteCallMethod(arguments.callee,arguments);
+ //return
hib.remoteCallMethod(arguments.callee,args);
}
}
}
@@ -110,8 +111,13 @@
if (this._nc[eg]==callee){
if (this.debug) {
//_root.Debug.write.write("DEBUG invoked a
function remotely: ",eg,args);
- }
- return this.callFuntion(eg,args);
+ }
+ if (args.length == 1) {
+ return this.callFuntion(eg,args[0]);
+ } else {
+ return this.callFuntion(eg,args);
+ }
+ //return this.callFuntion(eg,args);
}
}
]]>
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"OpenMeetings developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/openmeetings-dev?hl=en
-~----------~----~----~----~------~----~------~--~---