Passed
Push — master ( 56c883...f703ed )
by Maja
04:39
created
devices/ms/Device_Vista7.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -162,7 +162,7 @@
 block discarded – undo
162 162
             $profileFileCont .= '
163 163
 </ServerSideCredential>
164 164
 <InnerAuthenticationMethod>
165
-<NonEAPAuthMethod>' .$innerMethod. '</NonEAPAuthMethod>
165
+<NonEAPAuthMethod>' .$innerMethod . '</NonEAPAuthMethod>
166 166
 </InnerAuthenticationMethod>
167 167
 <VendorSpecific>
168 168
 <SessionResumption>false</SessionResumption>
Please login to merge, or discard this patch.
core/EntityWithDBProperties.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -225,7 +225,7 @@
 block discarded – undo
225 225
         $handle = DBConnection::handle("INST");
226 226
         $blobQuery = $handle->exec("SELECT option_value from $table WHERE row = $row");
227 227
         // SELECT -> returns resource, not boolean
228
-        while ($returnedData =  /** @scrutinizer ignore-type */ mysqli_fetch_object($blobQuery)) {
228
+        while ($returnedData = /** @scrutinizer ignore-type */ mysqli_fetch_object($blobQuery)) {
229 229
             $blob = $returnedData->option_value;
230 230
         }
231 231
         if (!isset($blob)) {
Please login to merge, or discard this patch.
core/diag/Sociopath.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@  discard block
 block discarded – undo
63 63
             1 => ["AREA" => AbstractTest::INFRA_DEVICE, 
64 64
                   "TXT" => _("Did the device previously work when roaming, i.e. at other hotspots away from your home institution?"), 
65 65
                   "FACTOR" => 0.33,
66
-                  "VERDICTLECTURE" => sprintf(_("If roaming consistently does not work, then very likely your device configuration is wrong. Typical errors causing this symptom include: using a routing ('outer') username without the @realm.tld suffix - those potentially work at home, but can not be used when roaming. %s"),$confAssistantText)],
66
+                  "VERDICTLECTURE" => sprintf(_("If roaming consistently does not work, then very likely your device configuration is wrong. Typical errors causing this symptom include: using a routing ('outer') username without the @realm.tld suffix - those potentially work at home, but can not be used when roaming. %s"), $confAssistantText)],
67 67
             2 => ["AREA" => AbstractTest::INFRA_DEVICE, 
68 68
                   "TXT" => _("Did you recently change the configuration on your device?"), 
69 69
                   "FACTOR" => 3,
@@ -97,12 +97,12 @@  discard block
 block discarded – undo
97 97
         $questionDetails = $this->qaArray[$questionNumber];
98 98
         if ($answer === TRUE) {
99 99
             $this->possibleFailureReasons[$questionDetails['AREA']] = $this->possibleFailureReasons[$questionDetails['AREA']] * $questionDetails["FACTOR"];
100
-            $this->loggerInstance->debug(3,"Adjusting ".$questionDetails['AREA']." by ".$questionDetails["FACTOR"]."\n");
100
+            $this->loggerInstance->debug(3, "Adjusting " . $questionDetails['AREA'] . " by " . $questionDetails["FACTOR"] . "\n");
101 101
             $factor = $questionDetails["FACTOR"];
102 102
         } elseif ($answer === FALSE) {
103 103
             $this->possibleFailureReasons[$questionDetails['AREA']] = $this->possibleFailureReasons[$questionDetails['AREA']] / $questionDetails["FACTOR"];
104
-            $this->loggerInstance->debug(3,"Adjusting ".$questionDetails['AREA']." by 1/".$questionDetails["FACTOR"]."\n");
105
-            $factor = 1/$questionDetails["FACTOR"];
104
+            $this->loggerInstance->debug(3, "Adjusting " . $questionDetails['AREA'] . " by 1/" . $questionDetails["FACTOR"] . "\n");
105
+            $factor = 1 / $questionDetails["FACTOR"];
106 106
         } else {
107 107
             $factor = 1;
108 108
         }
@@ -111,7 +111,7 @@  discard block
 block discarded – undo
111 111
         $this->additionalFindings["QUESTIONSASKED"] = $this->previousQuestions;
112 112
         $_SESSION["SUSPECTS"] = $this->possibleFailureReasons;
113 113
         $_SESSION["EVIDENCE"] = $this->additionalFindings;
114
-        $this->loggerInstance->debug(3,$_SESSION['SUSPECTS']);
114
+        $this->loggerInstance->debug(3, $_SESSION['SUSPECTS']);
115 115
     }
116 116
     
117 117
     public function questionOracle() {
@@ -125,7 +125,7 @@  discard block
 block discarded – undo
125 125
         // if both are identical, take any of the questions in the pool of both
126 126
         foreach ($this->qaArray as $questionNumber => $questionDetails) {
127 127
             // if we find a question we didn't ask before AND it is related to our currently high-scoring problem area, ask it
128
-            if (!array_key_exists($questionNumber, $this->previousQuestions) && ( $questionDetails["AREA"] == $highestCategory || $questionDetails["AREA"] == $nextCategory) ) {
128
+            if (!array_key_exists($questionNumber, $this->previousQuestions) && ($questionDetails["AREA"] == $highestCategory || $questionDetails["AREA"] == $nextCategory)) {
129 129
                 return json_encode(["NEXTEXISTS" => TRUE, "NUMBER" => $questionNumber, "TEXT" => $questionDetails["TXT"]]);
130 130
             }
131 131
         }
@@ -134,14 +134,14 @@  discard block
 block discarded – undo
134 134
     }
135 135
     
136 136
     public function getCurrentGuessState() {
137
-        return json_encode([ "SUSPECTS" => $this->possibleFailureReasons, "EVIDENCE" => $this->additionalFindings ]);
137
+        return json_encode(["SUSPECTS" => $this->possibleFailureReasons, "EVIDENCE" => $this->additionalFindings]);
138 138
     }
139 139
     
140 140
     public function verdictText($area) {
141 141
         $text = $this->genericVerdictTexts[$area];
142 142
         foreach ($this->previousQuestions as $number => $factor) {
143 143
             if ($this->qaArray[$number]["AREA"] == $area && $factor > 1) {
144
-                $text .= "\n\n".$this->qaArray[$number]["VERDICTLECTURE"];
144
+                $text .= "\n\n" . $this->qaArray[$number]["VERDICTLECTURE"];
145 145
             }
146 146
         }
147 147
         return $text;
Please login to merge, or discard this patch.
core/diag/Logopath.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -42,11 +42,11 @@  discard block
 block discarded – undo
42 42
         $this->possibleFailureReasons = $_SESSION["SUSPECTS"] ?? []; // if we know nothing, don't talk to anyone
43 43
         $this->additionalFindings = $_SESSION["EVIDENCE"] ?? [];
44 44
         
45
-        $this->subjectPrefix = _("[eduroam Diagnostics]")." ";
45
+        $this->subjectPrefix = _("[eduroam Diagnostics]") . " ";
46 46
         $this->finalGreeting = "\n"
47 47
                 . _("(This service is in an early stage. We apologise if this is a false alert. If this is the case, please send an email report to [email protected], forwarding the entire message (including the 'SUSPECTS' and 'EVIDENCE' data at the end), and explain why this is a false positive.)")
48 48
                 . "\n"
49
-                . _("Yours sincerely,"). "\n"
49
+                . _("Yours sincerely,") . "\n"
50 50
                 . "\n"
51 51
                 . _("The eduroam diagnostics algorithms");
52 52
         
@@ -57,13 +57,13 @@  discard block
 block discarded – undo
57 57
                 "bcc" => [], 
58 58
                 "reply-to" => [Logopath::EDUROAM_OT],
59 59
                 "subject" => _("[POLICYVIOLATION NATIONAL] IdP with no entry in eduroam database"), 
60
-                "body" => _("Dear NRO administrator,")."\n"
60
+                "body" => _("Dear NRO administrator,") . "\n"
61 61
                         . "\n"
62
-                        . wordwrap(sprintf(_("an end-user requested diagnostics for realm %s. Real-time connectivity checks determined that the realm exists, but we were unable to find an IdP with that realm in the eduroam database."), "foo.bar")) ."\n"
62
+                        . wordwrap(sprintf(_("an end-user requested diagnostics for realm %s. Real-time connectivity checks determined that the realm exists, but we were unable to find an IdP with that realm in the eduroam database."), "foo.bar")) . "\n"
63 63
                         . "\n"
64
-                        . _("By not listing IdPs in the eduroam database, you are violating the eduroam policy.")."\n"
64
+                        . _("By not listing IdPs in the eduroam database, you are violating the eduroam policy.") . "\n"
65 65
                         . "\n"
66
-                        . _("Additionally, this creates operational issues. In particular, we are unable to direct end users to their IdP for further diagnosis/instructions because there are no contact points for that IdP in the database."). "\n"
66
+                        . _("Additionally, this creates operational issues. In particular, we are unable to direct end users to their IdP for further diagnosis/instructions because there are no contact points for that IdP in the database.") . "\n"
67 67
                         . "\n"
68 68
                         . "Please stop the policy violation ASAP by listing the IdP which is associated to this realm.",
69 69
                 ],
Please login to merge, or discard this patch.
web/diag/processSociopath.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
     }
28 28
     $sociopath->revaluate($QPHP["NUMBER"], $yes);
29 29
 } else {
30
-    error_log('MGW workingwith '.serialize($workingwith));
30
+    error_log('MGW workingwith ' . serialize($workingwith));
31 31
 }
32 32
 $QJSON = $sociopath->questionOracle();
33 33
 $_SESSION['QJSON'] = $QJSON;
Please login to merge, or discard this patch.
web/diag/magicTelepath.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@
 block discarded – undo
10 10
  */
11 11
 require_once(dirname(dirname(__DIR__)) . "/config/_config.php");
12 12
 $realm = filter_input(INPUT_GET, 'realm', FILTER_SANITIZE_STRING);
13
-$visited = filter_input(INPUT_GET,'visited', FILTER_SANITIZE_STRING);
13
+$visited = filter_input(INPUT_GET, 'visited', FILTER_SANITIZE_STRING);
14 14
 if (session_status != PHP_SESSION_ACTIVE) {
15 15
     session_start();
16 16
 }
Please login to merge, or discard this patch.
web/skins/modern/diag/diag.php 1 patch
Spacing   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -1,19 +1,19 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 function my_nonce($optSalt = '') {
3 3
     $remote = filter_input(INPUT_SERVER, 'REMOTE_ADDR');
4
-    return hash_hmac('sha256', session_id() . $optSalt, date("YmdG") . '1qaz2wsx3edc!QAZ@WSX#EDC' .$remote);
4
+    return hash_hmac('sha256', session_id() . $optSalt, date("YmdG") . '1qaz2wsx3edc!QAZ@WSX#EDC' . $remote);
5 5
 }
6 6
 error_reporting(E_ALL | E_STRICT);
7 7
 $Gui->defaultPagePrelude();
8 8
 $_SESSION['current_page'] = $_SERVER['SCRIPT_NAME'];
9 9
 ?>
10 10
 <!-- JQuery -->
11
-<script type="text/javascript" src="<?php echo $Gui->skinObject->findResourceUrl("EXTERNAL","jquery/jquery.js"); ?>"></script>
12
-<script type="text/javascript" src="<?php echo $Gui->skinObject->findResourceUrl("EXTERNAL","jquery/jquery-ui.js"); ?>"></script>
13
-<script type='text/javascript' src="<?php echo $Gui->skinObject->findResourceUrl("EXTERNAL","jquery/Timepicker/jquery-ui-timepicker-addon.js"); ?>"></script>
14
-<script type='text/javascript' src="<?php echo $Gui->skinObject->findResourceUrl("EXTERNAL","jquery/Timepicker/jquery-ui-sliderAccess.js"); ?>"></script>
15
-<link type="text/css"  rel="stylesheet" href="<?php echo $Gui->skinObject->findResourceUrl("EXTERNAL","jquery/jquery-ui-1.12.1.custom/jquery-ui.css"); ?>" media="all" />
16
-<link type="text/css"  rel="stylesheet" href="<?php echo $Gui->skinObject->findResourceUrl("EXTERNAL","jquery/Timepicker/jquery-ui-timepicker-addon.css"); ?>"  media="all" />
11
+<script type="text/javascript" src="<?php echo $Gui->skinObject->findResourceUrl("EXTERNAL", "jquery/jquery.js"); ?>"></script>
12
+<script type="text/javascript" src="<?php echo $Gui->skinObject->findResourceUrl("EXTERNAL", "jquery/jquery-ui.js"); ?>"></script>
13
+<script type='text/javascript' src="<?php echo $Gui->skinObject->findResourceUrl("EXTERNAL", "jquery/Timepicker/jquery-ui-timepicker-addon.js"); ?>"></script>
14
+<script type='text/javascript' src="<?php echo $Gui->skinObject->findResourceUrl("EXTERNAL", "jquery/Timepicker/jquery-ui-sliderAccess.js"); ?>"></script>
15
+<link type="text/css"  rel="stylesheet" href="<?php echo $Gui->skinObject->findResourceUrl("EXTERNAL", "jquery/jquery-ui-1.12.1.custom/jquery-ui.css"); ?>" media="all" />
16
+<link type="text/css"  rel="stylesheet" href="<?php echo $Gui->skinObject->findResourceUrl("EXTERNAL", "jquery/Timepicker/jquery-ui-timepicker-addon.css"); ?>"  media="all" />
17 17
 <script type="text/javascript">
18 18
     var recognisedOS = '';
19 19
     var downloadMessage;
@@ -43,7 +43,7 @@  discard block
 block discarded – undo
43 43
 <body>
44 44
 <div id="main_page">
45 45
     <div id="loading_ico">
46
-          <span id='load_comment'></span><br><img src="<?php echo $Gui->skinObject->findResourceUrl("IMAGES","icons/loading51.gif"); ?>" alt="Loading stuff ..."/>
46
+          <span id='load_comment'></span><br><img src="<?php echo $Gui->skinObject->findResourceUrl("IMAGES", "icons/loading51.gif"); ?>" alt="Loading stuff ..."/>
47 47
     </div>
48 48
     <form id="cat_form" name="cat_form" method="POST"  accept-charset="UTF-8" action="">
49 49
     <input name="myNonce" id="myNonce" type="hidden" value="<?php echo my_nonce($_SERVER['SCRIPT_NAME']); ?>">
@@ -194,7 +194,7 @@  discard block
 block discarded – undo
194 194
         return false;
195 195
     }
196 196
     function testSociopath(realm, susp, answer) {
197
-        var comment = <?php echo '"'._("Testing realm").'..."'; ?>; 
197
+        var comment = <?php echo '"' . _("Testing realm") . '..."'; ?>; 
198 198
         inProgress(1, comment);
199 199
         if ($('#tested_realm').length == 0) {
200 200
             $('<input>').attr({
@@ -251,7 +251,7 @@  discard block
 block discarded – undo
251 251
         result = result + '<div><h3>';
252 252
         result = result + <?php echo '"' . _("The result for tested realm:") . ' "'; ?> + realm;
253 253
         result = result + '</h3></p><div style="padding: 5px;"><div style="padding: 0px;">';
254
-        result = result + <?php echo '"' . _("We located") . '" ';?>  + ' ';
254
+        result = result + <?php echo '"' . _("We located") . '" '; ?>  + ' ';
255 255
         result = result + Object.keys(verdict).length + ' ';
256 256
         result = result + <?php echo '"' . _("suspected areas which potentially can cause a problem.") . '"'; ?> + '<br>';
257 257
         result = result + <?php echo '"' . _("Next to the problem description we show a speculated probability of this event.") . '"'; ?>;
@@ -273,10 +273,10 @@  discard block
 block discarded – undo
273 273
                 result = result + '<td>' + <?php echo '"' . _("RADIUS server of your service provider has a problem") . '"'; ?> + '</td>';
274 274
             }
275 275
             if (key === 'INFRA_IDP_AUTHBACKEND') {
276
-                result = result + '<td>' + <?php echo '"' . _("RADIUS server in your home institution has a problem to authenticate users") .'"'; ?> + '</td>';
276
+                result = result + '<td>' + <?php echo '"' . _("RADIUS server in your home institution has a problem to authenticate users") . '"'; ?> + '</td>';
277 277
             }
278 278
             if (key === 'INFRA_NRO_SP') {
279
-                result = result + '<td>' + <?php echo '"' . _("The link between your current location and your federation server is broken") .'"'; ?> + '</td>';
279
+                result = result + '<td>' + <?php echo '"' . _("The link between your current location and your federation server is broken") . '"'; ?> + '</td>';
280 280
             }
281 281
             if (key === 'INFRA_LINK_ETLR_NRO_SP') {
282 282
                 result = result + '<td>' + <?php echo '"' . _("The link between your current location, your federation server and top level server is broken") . '"'; ?> + '</td>';
@@ -297,7 +297,7 @@  discard block
 block discarded – undo
297 297
                 result = result + '<td>' + <?php echo '"' . _("The link between your federation server and your institution server is broken") . '"'; ?> + '</td>';
298 298
             }
299 299
             if (key === 'INFRA_IdP_RADIUS') {
300
-                result = result + '<td>' + <?php echo '"' . _("RADIUS server of your home institution has a problem").'"'; ?> + '</td>';
300
+                result = result + '<td>' + <?php echo '"' . _("RADIUS server of your home institution has a problem") . '"'; ?> + '</td>';
301 301
             }
302 302
             if (key === 'INFRA_NONEXISTENTREALM') {
303 303
                 result = result + '<td>' + <?php echo '"' . _("Entered realm doesn't exist") . '"'; ?> + '</td>';
@@ -347,7 +347,7 @@  discard block
 block discarded – undo
347 347
         return false;
348 348
    });
349 349
    $(document).on('change', '#idp_country, #sp_country' , function() {
350
-        var comment = <?php echo '"' . _("Fetching institutions list").'..."'; ?>;  
350
+        var comment = <?php echo '"' . _("Fetching institutions list") . '..."'; ?>;  
351 351
         var id = $(this).attr('id');
352 352
         var k = id.indexOf('_');
353 353
         var type = id.substr(0,k);
Please login to merge, or discard this patch.
web/skins/modern/diag/diag_admin.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -139,11 +139,11 @@
 block discarded – undo
139 139
                     result = '<div class="padding">';
140 140
                     result = result + '<h3>'+ <?php echo '"' . _("SP contacting IdP due to technical problems or abuse") . '"'; ?> + '</h3>';
141 141
                     result = result + '<table>';
142
-                    result = result + '<tr><td>' + <?php echo '"' . _("SP email") . '"' ;?> +'</td><td>' + data.spcontact + '</td></tr>';
142
+                    result = result + '<tr><td>' + <?php echo '"' . _("SP email") . '"'; ?> +'</td><td>' + data.spcontact + '</td></tr>';
143 143
                     result = result + '<tr><td>' + <?php echo '"' . _("IdP email(s)") . '"'; ?> +'</td><td>' + data.idpcontact + '</td></tr>';
144
-                    result = result + '<tr><td>' + <?php echo '"' . _("Event's timestamp").'"'; ?> +'</td><td>' + data.timestamp + '</td></tr>';
145
-                    result = result + '<tr><td>' + <?php echo '"' . _("Suspected MAC address").'"'; ?> + '</td><td>' + data.mac + '</td></tr>';
146
-                    result = result + '<tr><td>' + <?php echo '"' . _("Additional description").'"'; ?> +'</td><td>' + data.description + '</td></tr>';
144
+                    result = result + '<tr><td>' + <?php echo '"' . _("Event's timestamp") . '"'; ?> +'</td><td>' + data.timestamp + '</td></tr>';
145
+                    result = result + '<tr><td>' + <?php echo '"' . _("Suspected MAC address") . '"'; ?> + '</td><td>' + data.mac + '</td></tr>';
146
+                    result = result + '<tr><td>' + <?php echo '"' . _("Additional description") . '"'; ?> +'</td><td>' + data.description + '</td></tr>';
147 147
                     result = result + '</div>';
148 148
                     showInfo(result, title);
149 149
                 }
Please login to merge, or discard this patch.