Completed
Push — master ( 213197...d84f1e )
by Daniel Neis
01:24
created
auth.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -65,7 +65,7 @@
 block discarded – undo
65 65
 
66 66
         $functionname = $this->config->auth_function;
67 67
         $params  = array($this->config->auth_function_username_paramname => $username,
68
-                         $this->config->auth_function_password_paramname => $password);
68
+                            $this->config->auth_function_password_paramname => $password);
69 69
 
70 70
         $result = $this->call_ws($this->config->serverurl, $functionname, $params);
71 71
 
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
     public function user_login($username, $password) {
65 65
 
66 66
         $functionname = $this->config->auth_function;
67
-        $params  = array($this->config->auth_function_username_paramname => $username,
67
+        $params = array($this->config->auth_function_username_paramname => $username,
68 68
                          $this->config->auth_function_password_paramname => $password);
69 69
 
70 70
         $result = $this->call_ws($this->config->serverurl, $functionname, $params);
@@ -91,7 +91,7 @@  discard block
 block discarded – undo
91 91
 
92 92
     private function call_ws($serverurl, $functionname, $params = array()) {
93 93
 
94
-        $serverurl = $serverurl . '?wsdl';
94
+        $serverurl = $serverurl.'?wsdl';
95 95
 
96 96
         $params = array_merge($this->config->ws_default_params, $params);
97 97
 
Please login to merge, or discard this patch.