Completed
Push — master ( 56f67e...24d627 )
by Daniel Neis
02:46
created
auth.php 1 patch
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
 
71 71
         $result = $this->call_ws($this->config->auth_serverurl, $functionname, $params);
Please login to merge, or discard this patch.
cli/sync_users.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -48,8 +48,8 @@
 block discarded – undo
48 48
 
49 49
 // Now get cli options.
50 50
 list($options, $unrecognized) = cli_get_params(array('noupdate' => false,
51
-                                                     'verbose'=> false,
52
-                                                     'help' => false), array('n' => 'noupdate', 'v' => 'verbose', 'h' => 'help'));
51
+                                                        'verbose'=> false,
52
+                                                        'help' => false), array('n' => 'noupdate', 'v' => 'verbose', 'h' => 'help'));
53 53
 
54 54
 if ($unrecognized) {
55 55
     $unrecognized = implode("\n  ", $unrecognized);
Please login to merge, or discard this patch.