login/logout return correct object now

This commit is contained in:
Miles Lott 2001-08-27 11:36:48 +00:00
parent 7768e27072
commit 7399ff4342

View File

@ -102,8 +102,8 @@
{ {
$rtrn = array(CreateObject('phpgwapi.soapval','GOAWAY','string',$username)); $rtrn = array(CreateObject('phpgwapi.soapval','GOAWAY','string',$username));
} }
//$r = CreateObject('phpgwapi.soapmsg','system_authResponse',$rtrn); $r = CreateObject('phpgwapi.soapmsg','system_loginResponse',$rtrn);
return $rtrn; return $r;
} }
function system_logout($m1,$m2) function system_logout($m1,$m2)
@ -126,7 +126,7 @@
CreateObject('phpgwapi.soapval','OOPS','string','WHAT?') CreateObject('phpgwapi.soapval','OOPS','string','WHAT?')
); );
} }
//$r = CreateObject('phpgwapi.soapmsg','system_auth_verifyResponse',$rtrn); $r = CreateObject('phpgwapi.soapmsg','system_logoutResponse',$rtrn);
return $rtrn; return $r;
} }
?> ?>