@@ -19,7 +19,7 @@ discard block |
||
19 | 19 | * <base_url>/copyright.php after deploying the software |
20 | 20 | */ |
21 | 21 | |
22 | -require_once dirname(dirname(__DIR__)) . "/config/_config.php"; |
|
22 | +require_once dirname(dirname(__DIR__))."/config/_config.php"; |
|
23 | 23 | \core\CAT::sessionStart(); |
24 | 24 | $loggerInstance = new \core\common\Logging(); |
25 | 25 | $loggerInstance->debug(4, "Sociopath test\n"); |
@@ -33,7 +33,7 @@ discard block |
||
33 | 33 | return NULL; |
34 | 34 | } |
35 | 35 | $loggerInstance->debug(4, $_SESSION['EVIDENCE']['QUESTIONSASKED']); |
36 | - $loggerInstance->debug(4, "\nAnswer question " . $QNUM . "\n"); |
|
36 | + $loggerInstance->debug(4, "\nAnswer question ".$QNUM."\n"); |
|
37 | 37 | switch ($answer) { |
38 | 38 | case 1: |
39 | 39 | $loggerInstance->debug(4, "Revaluate with FALSE"); |
@@ -19,10 +19,10 @@ |
||
19 | 19 | * <base_url>/copyright.php after deploying the software |
20 | 20 | */ |
21 | 21 | |
22 | -require_once dirname(dirname(__DIR__)) . "/config/_config.php"; |
|
22 | +require_once dirname(dirname(__DIR__))."/config/_config.php"; |
|
23 | 23 | $realm = filter_input(INPUT_GET, 'realm', FILTER_SANITIZE_STRING); |
24 | -$visited = filter_input(INPUT_GET,'visited', FILTER_SANITIZE_STRING); |
|
25 | -$nro = filter_input(INPUT_GET,'nro', FILTER_SANITIZE_STRING); |
|
24 | +$visited = filter_input(INPUT_GET, 'visited', FILTER_SANITIZE_STRING); |
|
25 | +$nro = filter_input(INPUT_GET, 'nro', FILTER_SANITIZE_STRING); |
|
26 | 26 | \core\CAT::sessionStart(); |
27 | 27 | $languageObject = new core\common\Language(); |
28 | 28 | $languageObject->setTextDomain("diagonstics"); |
@@ -19,7 +19,7 @@ |
||
19 | 19 | * <base_url>/copyright.php after deploying the software |
20 | 20 | */ |
21 | 21 | |
22 | -require_once dirname(dirname(dirname(dirname(__FILE__)))) . "/config/_config.php"; |
|
22 | +require_once dirname(dirname(dirname(dirname(__FILE__))))."/config/_config.php"; |
|
23 | 23 | |
24 | 24 | \core\CAT::sessionStart(); |
25 | 25 |
@@ -19,7 +19,7 @@ |
||
19 | 19 | * <base_url>/copyright.php after deploying the software |
20 | 20 | */ |
21 | 21 | |
22 | -require_once dirname(dirname(dirname(__FILE__))) . "/config/_config.php"; |
|
22 | +require_once dirname(dirname(dirname(__FILE__)))."/config/_config.php"; |
|
23 | 23 | |
24 | 24 | \core\CAT::sessionStart(); |
25 | 25 |
@@ -83,7 +83,7 @@ discard block |
||
83 | 83 | |
84 | 84 | // use HTML5 geolocation |
85 | 85 | function locateMe() { |
86 | - $('#address').val(\"" . _("locating") . "\"); |
|
86 | + $('#address').val(\"" . _("locating")."\"); |
|
87 | 87 | navigator.geolocation.getCurrentPosition(locate_succes,locate_fail,{maximumAge:3600000, timeout:5000}); |
88 | 88 | } |
89 | 89 | |
@@ -205,7 +205,7 @@ discard block |
||
205 | 205 | view.fit(extent, {padding: [10, 0, 10, 0]}); |
206 | 206 | } else { |
207 | 207 | view.setCenter([0,0]); |
208 | - locate_country('" . $cat->knownFederations[strtoupper($this->fedName)] . "'); // use the federation code to locate the country |
|
208 | + locate_country('" . $cat->knownFederations[strtoupper($this->fedName)]."'); // use the federation code to locate the country |
|
209 | 209 | map.setView(view); |
210 | 210 | } |
211 | 211 | view.setMaxZoom(20); |
@@ -227,14 +227,14 @@ discard block |
||
227 | 227 | function getAddressLocation() { |
228 | 228 | var city = $('#address').val(); |
229 | 229 | if(city == '') { |
230 | - alert(\"" . _("nothing entered in the address field") . "\"); |
|
230 | + alert(\"" . _("nothing entered in the address field")."\"); |
|
231 | 231 | return false; |
232 | 232 | } |
233 | 233 | city = city.replace(/\s*,\s*/g,',+'); |
234 | 234 | city = city.replace(/ +/,'+'); |
235 | 235 | $.get(addressService+'?format=json&addressdetails=0&q='+city, '', function(data) { |
236 | 236 | if (data[0] === undefined) { |
237 | - alert('" . _("Address not found, perhaps try another form, like putting the street number to the front.") . "'); |
|
237 | + alert('" . _("Address not found, perhaps try another form, like putting the street number to the front.")."'); |
|
238 | 238 | return; |
239 | 239 | } |
240 | 240 | showTmpPointer(data[0].lon, data[0].lat); |
@@ -285,7 +285,7 @@ discard block |
||
285 | 285 | if ($this->readOnly) { |
286 | 286 | return "<div id='map' class='locationmap'></div><script>generateMap('map')</script>"; |
287 | 287 | } else { |
288 | - return $this->htmlPreEdit($wizard, $additional) . $this->findLocationHtml() . "<span id='location-prompt'>You can drag the pointer to the final location before you save the results.</span><div id='map' class='locationmap'></div><script>generateMap('map')</script>" . $this->htmlPostEdit(FALSE); |
|
288 | + return $this->htmlPreEdit($wizard, $additional).$this->findLocationHtml()."<span id='location-prompt'>You can drag the pointer to the final location before you save the results.</span><div id='map' class='locationmap'></div><script>generateMap('map')</script>".$this->htmlPostEdit(FALSE); |
|
289 | 289 | } |
290 | 290 | } |
291 | 291 | |
@@ -310,7 +310,7 @@ discard block |
||
310 | 310 | // we don't need this parameter in this subclass |
311 | 311 | unset($coords); |
312 | 312 | \core\common\Entity::intoThePotatoes(); |
313 | - $retval = "<button id='location_b_" . $number . "' class='location_button'>" . _("Click to see location") . " $number</button>"; |
|
313 | + $retval = "<button id='location_b_".$number."' class='location_button'>"._("Click to see location")." $number</button>"; |
|
314 | 314 | \core\common\Entity::outOfThePotatoes(); |
315 | 315 | return $retval; |
316 | 316 | } |
@@ -322,7 +322,7 @@ discard block |
||
322 | 322 | */ |
323 | 323 | private function findLocationHtml() { |
324 | 324 | \core\common\Entity::intoThePotatoes(); |
325 | - $retval = "<p>" . _("Address:") . " <input name='address' id='address' /><button type='button' onclick='getAddressLocation()'>" . _("Find address") . "</button> <button type='button' onclick='locateMe()'>" . _("Locate Me!") . "</button></p>"; |
|
325 | + $retval = "<p>"._("Address:")." <input name='address' id='address' /><button type='button' onclick='getAddressLocation()'>"._("Find address")."</button> <button type='button' onclick='locateMe()'>"._("Locate Me!")."</button></p>"; |
|
326 | 326 | \core\common\Entity::outOfThePotatoes(); |
327 | 327 | return $retval; |
328 | 328 | } |
@@ -338,14 +338,14 @@ discard block |
||
338 | 338 | case \core\Options::TYPECODE_TEXT: |
339 | 339 | case \core\Options::TYPECODE_COORDINATES: |
340 | 340 | case \core\Options::TYPECODE_INTEGER: |
341 | - $varName = $listOfEntries["$objId-" . self::VALIDATOR_FUNCTIONS[$optioninfo['type']]['field']]; |
|
341 | + $varName = $listOfEntries["$objId-".self::VALIDATOR_FUNCTIONS[$optioninfo['type']]['field']]; |
|
342 | 342 | if (!empty($varName)) { |
343 | 343 | $content = call_user_func_array([$this->validator, self::VALIDATOR_FUNCTIONS[$optioninfo['type']]['function']], array_merge([$varName], self::VALIDATOR_FUNCTIONS[$optioninfo['type']]['extraarg'])); |
344 | 344 | break; |
345 | 345 | } |
346 | 346 | continue 2; |
347 | 347 | case \core\Options::TYPECODE_BOOLEAN: |
348 | - $varName = $listOfEntries["$objId-" . \core\Options::TYPECODE_BOOLEAN]; |
|
348 | + $varName = $listOfEntries["$objId-".\core\Options::TYPECODE_BOOLEAN]; |
|
349 | 349 | if (!empty($varName)) { |
350 | 350 | $contentValid = $this->validator->boolean($varName); |
351 | 351 | if ($contentValid) { |
@@ -358,7 +358,7 @@ discard block |
||
358 | 358 | } |
359 | 359 | continue 2; |
360 | 360 | case \core\Options::TYPECODE_STRING: |
361 | - $previsionalContent = $listOfEntries["$objId-" . \core\Options::TYPECODE_STRING]; |
|
361 | + $previsionalContent = $listOfEntries["$objId-".\core\Options::TYPECODE_STRING]; |
|
362 | 362 | if (!empty($previsionalContent)) { |
363 | 363 | $content = $this->furtherStringChecks($objValue, $previsionalContent, $bad); |
364 | 364 | if ($content === FALSE) { |
@@ -369,15 +369,15 @@ discard block |
||
369 | 369 | continue 2; |
370 | 370 | case \core\Options::TYPECODE_FILE: |
371 | 371 | // this is either actually an uploaded file, or a reference to a DB entry of a previously uploaded file |
372 | - $reference = $listOfEntries["$objId-" . \core\Options::TYPECODE_STRING]; |
|
372 | + $reference = $listOfEntries["$objId-".\core\Options::TYPECODE_STRING]; |
|
373 | 373 | if (!empty($reference)) { // was already in, by ROWID reference, extract |
374 | 374 | // ROWID means it's a multi-line string (simple strings are inline in the form; so allow whitespace) |
375 | 375 | $content = $this->validator->string(urldecode($reference), TRUE); |
376 | 376 | break; |
377 | 377 | } |
378 | - $fileName = $listOfEntries["$objId-" . \core\Options::TYPECODE_FILE] ?? ""; |
|
378 | + $fileName = $listOfEntries["$objId-".\core\Options::TYPECODE_FILE] ?? ""; |
|
379 | 379 | if ($fileName != "") { // let's do the download |
380 | - $rawContent = \core\common\OutsideComm::downloadFile("file:///" . $fileName); |
|
380 | + $rawContent = \core\common\OutsideComm::downloadFile("file:///".$fileName); |
|
381 | 381 | |
382 | 382 | if ($rawContent === FALSE || !$this->checkUploadSanity($objValue, $rawContent)) { |
383 | 383 | $bad[] = $objValue; |
@@ -388,7 +388,7 @@ discard block |
||
388 | 388 | } |
389 | 389 | continue 2; |
390 | 390 | default: |
391 | - throw new Exception("Internal Error: Unknown option type " . $objValue . "!"); |
|
391 | + throw new Exception("Internal Error: Unknown option type ".$objValue."!"); |
|
392 | 392 | } |
393 | 393 | // lang can be NULL here, if it's not a multilang attribute, or a ROWID reference. Never mind that. |
394 | 394 | $retval[] = ["$objValue" => ["lang" => $languageFlag, "content" => $content]]; |
@@ -121,7 +121,7 @@ |
||
121 | 121 | if ($trailerPosition !== FALSE) { |
122 | 122 | $base = substr($scriptself, 0, $trailerPosition); |
123 | 123 | if ($base !== FALSE) { |
124 | - $url = "//$servername" . $base . "/logout_check.php"; |
|
124 | + $url = "//$servername".$base."/logout_check.php"; |
|
125 | 125 | } |
126 | 126 | } |
127 | 127 |
@@ -136,19 +136,19 @@ discard block |
||
136 | 136 | protected function htmlPreEdit($wizardMode, $additional) { |
137 | 137 | \core\common\Entity::intoThePotatoes(); |
138 | 138 | $retval = "<fieldset class='option_container'> |
139 | - <legend><strong>" . _("Location") . "</strong></legend>"; |
|
139 | + <legend><strong>" . _("Location")."</strong></legend>"; |
|
140 | 140 | |
141 | 141 | if ($wizardMode) { |
142 | - $retval .= "<p>" . |
|
143 | - _("The user download interface (see <a href='../'>here</a>), uses geolocation to suggest possibly matching IdPs to the user. The more precise you define the location here, the easier your users will find you.") . |
|
142 | + $retval .= "<p>". |
|
143 | + _("The user download interface (see <a href='../'>here</a>), uses geolocation to suggest possibly matching IdPs to the user. The more precise you define the location here, the easier your users will find you."). |
|
144 | 144 | "</p> |
145 | 145 | <ul>" . |
146 | 146 | _("<li>Drag the marker in the map to your place, or</li> |
147 | 147 | <li>enter your street address in the field below for lookup, or</li> |
148 | -<li>use the 'Locate Me!' button</li>") . |
|
148 | +<li>use the 'Locate Me!' button</li>"). |
|
149 | 149 | "</ul> |
150 | 150 | <strong>" . |
151 | - _("We will use the coordinates as indicated by the marker for geolocation.") . |
|
151 | + _("We will use the coordinates as indicated by the marker for geolocation."). |
|
152 | 152 | "</strong>"; |
153 | 153 | } |
154 | 154 | if ($additional) { |
@@ -166,7 +166,7 @@ discard block |
||
166 | 166 | */ |
167 | 167 | protected function htmlPostEdit($allowDirectInput) { |
168 | 168 | \core\common\Entity::intoThePotatoes(); |
169 | - $retval = "<br/>" . _("Latitude:") . " <input style='width:80px' name='geo_lat' id='geo_lat' " .($allowDirectInput ? "": "readonly"). ">" . _("Longitude:") . " <input name='geo_long' id='geo_long' style='width:80px' " .($allowDirectInput ? "": "readonly"). "></fieldset>"; |
|
169 | + $retval = "<br/>"._("Latitude:")." <input style='width:80px' name='geo_lat' id='geo_lat' ".($allowDirectInput ? "" : "readonly").">"._("Longitude:")." <input name='geo_long' id='geo_long' style='width:80px' ".($allowDirectInput ? "" : "readonly")."></fieldset>"; |
|
170 | 170 | \core\common\Entity::outOfThePotatoes(); |
171 | 171 | return $retval; |
172 | 172 | } |
@@ -167,7 +167,7 @@ |
||
167 | 167 | $this->NAPTR_executed = RADIUSTests::RETVAL_NOTCONFIGURED; |
168 | 168 | return RADIUSTests::RETVAL_NOTCONFIGURED; |
169 | 169 | } |
170 | - $NAPTRs = dns_get_record($this->realm . ".", DNS_NAPTR); |
|
170 | + $NAPTRs = dns_get_record($this->realm.".", DNS_NAPTR); |
|
171 | 171 | if ($NAPTRs === FALSE || count($NAPTRs) == 0) { |
172 | 172 | $this->NAPTR_executed = RFC7585Tests::RETVAL_NONAPTR; |
173 | 173 | return RFC7585Tests::RETVAL_NONAPTR; |
@@ -197,7 +197,6 @@ |
||
197 | 197 | * - RETVAL_NOTCONFIGURED; needs \config\Diagnostics::RADIUSTESTS['TLS-discoverytag'] |
198 | 198 | * - RETVAL_INVALID (at least one format error) |
199 | 199 | * - RETVAL_OK (all fine) |
200 | - |
|
201 | 200 | * @return int one of two RETVALs above |
202 | 201 | */ |
203 | 202 | public function relevantNAPTRcompliance() |