Completed
Push — develop ( d6d1d3...59b59d )
by Patrick
49s
created
Auth/SQLGroup.php 2 patches
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -154,11 +154,11 @@
 block discarded – undo
154 154
         }
155 155
         if($isGroup)
156 156
         {
157
-        	array_push($this->tmpMembers, array('gid' => $name));
157
+            array_push($this->tmpMembers, array('gid' => $name));
158 158
         }
159 159
         else
160 160
         {
161
-        	array_push($this->tmpMembers, array('uid' => $name));
161
+            array_push($this->tmpMembers, array('uid' => $name));
162 162
         }
163 163
         if($flush)
164 164
         {
Please login to merge, or discard this patch.
Braces   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@  discard block
 block discarded – undo
10 10
     {
11 11
         $this->data = $data;
12 12
         $this->auth = $auth;
13
-        if($this->auth === false) 
13
+        if($this->auth === false)
14 14
         {
15 15
             $this->auth = \Flipside\AuthProvider::getInstance()->getMethodByName("Flipside\Auth\SQLAuthenticator");
16 16
         }
@@ -166,7 +166,7 @@  discard block
 block discarded – undo
166 166
                 $memberDT = $this->auth->getDataTable('groupUserMap');
167 167
                 //Get all cu rrent direct members
168 168
                 $existing = $memberDT->read(new \Flipside\Data\Filter('groupCN eq "'.$gid.'"'));
169
-                if($existing === false) 
169
+                if($existing === false)
170 170
                 {
171 171
                     //Empty group...
172 172
                     $existing = array();
Please login to merge, or discard this patch.