change class name soapclient to soap_client according to the nusoap.php in the lib/soap folder

This commit is contained in:
fyang1024 2006-02-08 06:00:24 +00:00
parent d6af3cfab9
commit 407ed8c619

View File

@ -148,7 +148,7 @@ function lams_get_soap_client($relativeurl) {
return NULL;
}
$wsdl = $CFG->lams_serverurl.$relativeurl;
$s = new soapclient($wsdl,true,false,false,false,false,2,3);
$s = new soap_client($wsdl,true,false,false,false,false,2,3);
return $s;
}