Passed
Push — release_2_1 ( a8ee7d...53e78a )
by Tomasz
09:23
created
web/admin/edit_profile_result.php 2 patches
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -255,10 +255,10 @@  discard block
 block discarded – undo
255 255
                 switch ($orTest['level']) {
256 256
                     case \core\AbstractProfile::OVERALL_OPENROAMING_LEVEL_ERROR:
257 257
                         echo $uiElements->boxError($orTest['explanation']);
258
-                         break;
258
+                            break;
259 259
                     case \core\AbstractProfile::OVERALL_OPENROAMING_LEVEL_WARN:
260 260
                          echo $uiElements->boxWarning($orTest['explanation']);
261
-                         break;
261
+                            break;
262 262
                     case \core\AbstractProfile::OVERALL_OPENROAMING_LEVEL_NOTE:
263 263
                          echo $uiElements->boxRemark($orTest['explanation']);                    
264 264
                         break;
@@ -267,7 +267,7 @@  discard block
 block discarded – undo
267 267
                         break;
268 268
                     default:
269 269
                         break;    
270
-                 }
270
+                    }
271 271
             }
272 272
                         
273 273
         }
Please login to merge, or discard this patch.
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
         echo $deco->pageheader(sprintf(_("%s: Edit Profile - Result"), \config\Master::APPEARANCE['productname']), "ADMIN-IDP");
54 54
     } else {
55 55
         $profile = $my_inst->newProfile(core\AbstractProfile::PROFILETYPE_RADIUS);
56
-        $loggerInstance->writeAudit($_SESSION['user'], "NEW", "IdP ". $my_inst->identifier." - Profile created");
56
+        $loggerInstance->writeAudit($_SESSION['user'], "NEW", "IdP ".$my_inst->identifier." - Profile created");
57 57
         echo $deco->pageheader(sprintf(_("%s: Profile wizard (step 3 completed)"), \config\Master::APPEARANCE['productname']), "ADMIN-IDP");
58 58
     }
59 59
     if (!$profile instanceof \core\ProfileRADIUS) {
@@ -63,9 +63,9 @@  discard block
 block discarded – undo
63 63
     $realm = FALSE;
64 64
     $anon_support = FALSE;
65 65
     $attributes = $profile->getAttributes();
66
-    $anonLocal =  \core\common\Entity::getAttributeValue($attributes, "internal:anon_local_value", 0) ??  "anonymous";
66
+    $anonLocal = \core\common\Entity::getAttributeValue($attributes, "internal:anon_local_value", 0) ?? "anonymous";
67 67
     $checkuser_support = FALSE;
68
-    $checkuser_local = \core\common\Entity::getAttributeValue($attributes, "internal:checkuser_value", 0) ??  "anonymous";
68
+    $checkuser_local = \core\common\Entity::getAttributeValue($attributes, "internal:checkuser_value", 0) ?? "anonymous";
69 69
     $verify_support = FALSE;
70 70
     $hint_support = FALSE;
71 71
     $redirect = FALSE;
Please login to merge, or discard this patch.