Completed
Push — master ( e1f3e1...8a67ce )
by Patrick
02:59
created
class.AuthProvider.php 1 patch
Braces   +22 added lines, -9 removed lines patch added patch discarded remove patch
@@ -21,8 +21,7 @@  discard block
 block discarded – undo
21 21
 if(isset($GLOBALS['FLIPSIDE_SETTINGS_LOC']))
22 22
 {
23 23
     require_once($GLOBALS['FLIPSIDE_SETTINGS_LOC'].'/class.FlipsideSettings.php');
24
-}
25
-else
24
+} else
26 25
 {
27 26
     require_once('/var/www/secure_settings/class.FlipsideSettings.php');
28 27
 }
@@ -381,7 +380,9 @@  discard block
 block discarded – undo
381 380
         $count = count($this->methods);
382 381
         for($i = 0; $i < $count; $i++)
383 382
         {
384
-            if($this->methods[$i]->supplement === false) continue;
383
+            if($this->methods[$i]->supplement === false) {
384
+                continue;
385
+            }
385 386
 
386 387
             array_push($ret, $this->methods[$i]->getSupplementLink());
387 388
         }
@@ -420,7 +421,9 @@  discard block
 block discarded – undo
420 421
             $count = count($this->methods);
421 422
             for($i = 0; $i < $count; $i++)
422 423
             {
423
-                if($this->methods[$i]->pending === false) continue;
424
+                if($this->methods[$i]->pending === false) {
425
+                    continue;
426
+                }
424 427
 
425 428
                 $ret = $this->methods[$i]->getTempUserByHash($hash);
426 429
                 if($ret !== false)
@@ -449,7 +452,9 @@  discard block
 block discarded – undo
449 452
             $count = count($this->methods);
450 453
             for($i = 0; $i < $count; $i++)
451 454
             {
452
-                if($this->methods[$i]->pending === false) continue;
455
+                if($this->methods[$i]->pending === false) {
456
+                    continue;
457
+                }
453 458
 
454 459
                 $ret = $this->methods[$i]->createPendingUser($user);
455 460
                 if($ret !== false)
@@ -481,7 +486,9 @@  discard block
 block discarded – undo
481 486
             $count = count($this->methods);
482 487
             for($i = 0; $i < $count; $i++)
483 488
             {
484
-                if($this->methods[$i]->current === false) continue;
489
+                if($this->methods[$i]->current === false) {
490
+                    continue;
491
+                }
485 492
 
486 493
                 $ret = $this->methods[$i]->activatePendingUser($user);
487 494
                 if($ret !== false)
@@ -511,7 +518,9 @@  discard block
 block discarded – undo
511 518
             $count = count($this->methods);
512 519
             for($i = 0; $i < $count; $i++)
513 520
             {
514
-                if($this->methods[$i]->current === false) continue;
521
+                if($this->methods[$i]->current === false) {
522
+                    continue;
523
+                }
515 524
 
516 525
                 $ret = $this->methods[$i]->getUserByResetHash($hash);
517 526
                 if($ret !== false)
@@ -541,7 +550,9 @@  discard block
 block discarded – undo
541 550
         $count = count($this->methods);
542 551
         for($i = 0; $i < $count; $i++)
543 552
         {
544
-            if($this->methods[$i]->supplement === false) continue;
553
+            if($this->methods[$i]->supplement === false) {
554
+                continue;
555
+            }
545 556
 
546 557
             if($this->methods[$i]->getHostName() === $host)
547 558
             {
@@ -573,7 +584,9 @@  discard block
 block discarded – undo
573 584
             $count = count($this->methods);
574 585
             for($i = 0; $i < $count; $i++)
575 586
             {
576
-                if($this->methods[$i]->current === false) continue;
587
+                if($this->methods[$i]->current === false) {
588
+                    continue;
589
+                }
577 590
 
578 591
                 $ret = $this->methods[$i]->getUserByAccessCode($key);
579 592
                 if($ret !== false)
Please login to merge, or discard this patch.