lib/client

Aleksander Machniak machniak at kolabsys.com
Thu Oct 25 13:06:35 CEST 2012


 lib/client/kolab_client_task_signup.php |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit b0a287d7e042f2ac9474b21895f22c6f473347e2
Author: Aleksander Machniak <alec at alec.pl>
Date:   Thu Oct 25 13:05:34 2012 +0200

    Fix PHP Fatal error: Call to undefined method kolab_client_task_signup::api_login()

diff --git a/lib/client/kolab_client_task_signup.php b/lib/client/kolab_client_task_signup.php
index 7c40b36..8863c2b 100644
--- a/lib/client/kolab_client_task_signup.php
+++ b/lib/client/kolab_client_task_signup.php
@@ -69,7 +69,7 @@ class kolab_client_task_signup extends kolab_client_task
         }
 
         // Login ($result is a kolab_client_api_result instance)
-        $result = $this->api_login($this->config_get('bind_dn'), $this->config_get('bind_pw'), $this->domain);
+        $result = $this->api->login($this->config_get('bind_dn'), $this->config_get('bind_pw'), $this->domain);
 
         // Set the session token we got in the API client instance, so subsequent
         // API calls are made in the same session.





More information about the commits mailing list