Passed
Push — release_2_1 ( 61624e...7f34c3 )
by Stefan
10:19
created
core/diag/Logopath.php 1 patch
Spacing   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -117,11 +117,11 @@  discard block
 block discarded – undo
117 117
         $this->possibleFailureReasons = $_SESSION["SUSPECTS"] ?? []; // if we know nothing, don't talk to anyone
118 118
         $this->additionalFindings = $_SESSION["EVIDENCE"] ?? [];
119 119
 
120
-        $this->subjectPrefix = _("[eduroam Diagnostics]") . " ";
120
+        $this->subjectPrefix = _("[eduroam Diagnostics]")." ";
121 121
         $this->finalGreeting = "\n"
122 122
                 . _("(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.)")
123 123
                 . "\n"
124
-                . _("Yours sincerely,") . "\n"
124
+                . _("Yours sincerely,")."\n"
125 125
                 . "\n"
126 126
                 . _("Ed U. Roam, the eduroam diagnostics algorithm");
127 127
 
@@ -132,13 +132,13 @@  discard block
 block discarded – undo
132 132
                 "bcc" => [],
133 133
                 "reply-to" => [Logopath::TARGET_EDUROAM_OT],
134 134
                 "subject" => _("[POLICYVIOLATION NATIONAL] IdP with no entry in eduroam database"),
135
-                "body" => _("Dear NRO administrator,") . "\n"
135
+                "body" => _("Dear NRO administrator,")."\n"
136 136
                 . "\n"
137
-                . 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."), $this->additionalFindings['REALM'])) . "\n"
137
+                . 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."), $this->additionalFindings['REALM']))."\n"
138 138
                 . "\n"
139
-                . _("By not listing IdPs in the eduroam database, you are violating the eduroam policy.") . "\n"
139
+                . _("By not listing IdPs in the eduroam database, you are violating the eduroam policy.")."\n"
140 140
                 . "\n"
141
-                . _("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"
141
+                . _("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"
142 142
                 . "\n"
143 143
                 . _("Please stop the policy violation ASAP by listing the IdP which is associated to this realm.")
144 144
                 . "\n",
@@ -149,11 +149,11 @@  discard block
 block discarded – undo
149 149
                 "bcc" => [],
150 150
                 "reply-to" => [Logopath::TARGET_ENDUSER],
151 151
                 "subject" => _("[TECHNICAL PROBLEM] Administrator suspects technical problem with your IdP"),
152
-                "body" => _("Dear IdP administrator,") . "\n"
152
+                "body" => _("Dear IdP administrator,")."\n"
153 153
                 . "\n"
154 154
                 . sprintf(_("an organisation administrator requested diagnostics for realm %s. "), $this->additionalFindings['REALM'])
155 155
                 . "\n"
156
-                . _("Real-time connectivity checks determined that the realm appears to be working in acceptable parameters, but the administrator insisted to contact you with the supplemental information below.") . "\n"
156
+                . _("Real-time connectivity checks determined that the realm appears to be working in acceptable parameters, but the administrator insisted to contact you with the supplemental information below.")."\n"
157 157
                 . "\n",
158 158
             ],
159 159
             Logopath::IDP_SUSPECTED_PROBLEM_INTERACTIVE_EVIDENCED => [
@@ -162,11 +162,11 @@  discard block
 block discarded – undo
162 162
                 "bcc" => [],
163 163
                 "reply-to" => [Logopath::TARGET_ENDUSER],
164 164
                 "subject" => _("[TECHNICAL PROBLEM] Administrator suspects technical problem with your IdP"),
165
-                "body" => _("Dear IdP administrator,") . "\n"
165
+                "body" => _("Dear IdP administrator,")."\n"
166 166
                 . "\n"
167 167
                 . sprintf(_("an organisation administrator requested diagnostics for realm %s. "), $this->additionalFindings['REALM'])
168 168
                 . "\n"
169
-                . _("Real-time connectivity checks determined that the realm indeed has an operational problem at this point in time. Please see the supplemental information below.") . "\n"
169
+                . _("Real-time connectivity checks determined that the realm indeed has an operational problem at this point in time. Please see the supplemental information below.")."\n"
170 170
                 . "\n",
171 171
             ],
172 172
         ];
@@ -174,13 +174,13 @@  discard block
 block discarded – undo
174 174
         // add exalted human-readable information to main mail body
175 175
         foreach ($this->mailStack as $oneEntry) {
176 176
             if (isset($this->additionalFindings['INTERACTIVE_ENDUSER_AUTH_TIMESTAMP'])) {
177
-                $oneEntry["body"] .= _("Authentication/Attempt Timestamp of user session:") . " " . $this->additionalFindings['INTERACTIVE_ENDUSER_AUTH_TIMESTAMP'] . "\n";
177
+                $oneEntry["body"] .= _("Authentication/Attempt Timestamp of user session:")." ".$this->additionalFindings['INTERACTIVE_ENDUSER_AUTH_TIMESTAMP']."\n";
178 178
             }
179 179
             if (isset($this->additionalFindings['INTERACTIVE_ENDUSER_MAC'])) {
180
-                $oneEntry["body"] .= _("MAC address of end user in question:") . " " . $this->additionalFindings['INTERACTIVE_ENDUSER_MAC'] . "\n";
180
+                $oneEntry["body"] .= _("MAC address of end user in question:")." ".$this->additionalFindings['INTERACTIVE_ENDUSER_MAC']."\n";
181 181
             }
182 182
             if (isset($this->additionalFindings['INTERACTIVE_ADDITIONAL_COMMENTS'])) {
183
-                $oneEntry["body"] .= _("Additional Comments:") . " " . $this->additionalFindings['INTERACTIVE_ADDITIONAL_COMMENTS'] . "\n";
183
+                $oneEntry["body"] .= _("Additional Comments:")." ".$this->additionalFindings['INTERACTIVE_ADDITIONAL_COMMENTS']."\n";
184 184
             }
185 185
         }
186 186
 
@@ -344,7 +344,7 @@  discard block
 block discarded – undo
344 344
 
345 345
             $handle = \core\common\OutsideComm::mailHandle();
346 346
             // let's identify ourselves
347
-            $handle->FromName = \config\Master::APPEARANCE['productname'] . " Real-Time Diagnostics System";
347
+            $handle->FromName = \config\Master::APPEARANCE['productname']." Real-Time Diagnostics System";
348 348
             // add recipients
349 349
             foreach (Logopath::CATEGORYBINDING as $arrayName => $functionName) {
350 350
                 foreach ($theMail[$arrayName] as $onePrincipal) {
Please login to merge, or discard this patch.
core/SanityTests.php 1 patch
Spacing   +44 added lines, -44 removed lines patch added patch discarded remove patch
@@ -129,7 +129,7 @@  discard block
 block discarded – undo
129 129
         $this->test_result = [];
130 130
         $this->test_result['global'] = 0;
131 131
         // parse the schema file to find out the number of expected rows...
132
-        $schema = file(dirname(dirname(__FILE__)) . "/schema/schema.sql");
132
+        $schema = file(dirname(dirname(__FILE__))."/schema/schema.sql");
133 133
         $this->profileOptionCount = 0;
134 134
         $passedTheWindmill = FALSE;
135 135
         foreach ($schema as $schemaLine) {
@@ -156,7 +156,7 @@  discard block
 block discarded – undo
156 156
     {
157 157
         $this->out[$test] = [];
158 158
         $this->name = $test;
159
-        $m_name = 'test' . $test;
159
+        $m_name = 'test'.$test;
160 160
         $this->test_result[$test] = 0;
161 161
         if (!method_exists($this, $m_name)) {
162 162
             $this->storeTestResult(\core\common\Entity::L_ERROR, "Configuration error, no test configured for <strong>$test</strong>.");
@@ -269,9 +269,9 @@  discard block
 block discarded – undo
269 269
     private function testPhp()
270 270
     {
271 271
         if (version_compare(phpversion(), $this->needversionPHP, '>=')) {
272
-            $this->storeTestResult(\core\common\Entity::L_OK, "<strong>PHP</strong> is sufficiently recent. You are running " . phpversion() . ".");
272
+            $this->storeTestResult(\core\common\Entity::L_OK, "<strong>PHP</strong> is sufficiently recent. You are running ".phpversion().".");
273 273
         } else {
274
-            $this->storeTestResult(\core\common\Entity::L_ERROR, "<strong>PHP</strong> is too old. We need at least $this->needversionPHP, but you only have " . phpversion() . ".");
274
+            $this->storeTestResult(\core\common\Entity::L_ERROR, "<strong>PHP</strong> is too old. We need at least $this->needversionPHP, but you only have ".phpversion().".");
275 275
         }
276 276
     }
277 277
     
@@ -284,12 +284,12 @@  discard block
 block discarded – undo
284 284
      */
285 285
     private function runConstantsTest($config)
286 286
     {
287
-        $templateConfig = file_get_contents(ROOT . "/config/$config-template.php");
288
-        $newTemplateConfig = preg_replace("/class *$config/", "class $config" . "_template", $templateConfig);
289
-        file_put_contents(ROOT . "/var/tmp/$config-template.php", $newTemplateConfig);
290
-        include(ROOT . "/var/tmp/$config-template.php");
291
-        unlink(ROOT . "/var/tmp/$config-template.php");
292
-        $rft = new \ReflectionClass("\config\\$config" . "_template");
287
+        $templateConfig = file_get_contents(ROOT."/config/$config-template.php");
288
+        $newTemplateConfig = preg_replace("/class *$config/", "class $config"."_template", $templateConfig);
289
+        file_put_contents(ROOT."/var/tmp/$config-template.php", $newTemplateConfig);
290
+        include(ROOT."/var/tmp/$config-template.php");
291
+        unlink(ROOT."/var/tmp/$config-template.php");
292
+        $rft = new \ReflectionClass("\config\\$config"."_template");
293 293
         $templateConstants = $rft->getConstants();
294 294
         $failResults = [];
295 295
         foreach ($templateConstants as $constant => $value) {
@@ -306,7 +306,7 @@  discard block
 block discarded – undo
306 306
      * Check if all required constants are set
307 307
      */
308 308
     private function testConfigConstants() {
309
-        set_error_handler(function ($severity, $message, $file, $line) {
309
+        set_error_handler(function($severity, $message, $file, $line) {
310 310
             throw new \ErrorException($message, $severity, $severity, $file, $line);
311 311
         });
312 312
         
@@ -317,7 +317,7 @@  discard block
 block discarded – undo
317 317
             $failCount = $failCount + count($failResults);
318 318
             if (count($failResults) > 0) {
319 319
             $this->storeTestResult(\core\common\Entity::L_ERROR, 
320
-                    "<strong>The following constants are not set:</strong>" . implode(', ', $failResults));
320
+                    "<strong>The following constants are not set:</strong>".implode(', ', $failResults));
321 321
             }
322 322
         }
323 323
         
@@ -341,7 +341,7 @@  discard block
 block discarded – undo
341 341
             $this->storeTestResult(\core\common\Entity::L_OK, "<strong>cat_base_url</strong> set correctly");
342 342
         } else {
343 343
             $rootFromScript = $m[1] === '' ? '/' : $m[1];
344
-            $this->storeTestResult(\core\common\Entity::L_ERROR, "<strong>cat_base_url</strong> is set to <strong>" . \config\Master::PATHS['cat_base_url'] . "</strong> and should be <strong>$rootFromScript</strong>");
344
+            $this->storeTestResult(\core\common\Entity::L_ERROR, "<strong>cat_base_url</strong> is set to <strong>".\config\Master::PATHS['cat_base_url']."</strong> and should be <strong>$rootFromScript</strong>");
345 345
         }
346 346
     }
347 347
 
@@ -362,7 +362,7 @@  discard block
 block discarded – undo
362 362
         if (count($probeReturns) == 0) {
363 363
             $this->storeTestResult(common\Entity::L_OK, "All configured RADIUS/UDP probes are reachable.");
364 364
         } else {
365
-            $this->storeTestResult(common\Entity::L_ERROR, "The following RADIUS probes are NOT reachable: " . implode(', ', $probeReturns));
365
+            $this->storeTestResult(common\Entity::L_ERROR, "The following RADIUS probes are NOT reachable: ".implode(', ', $probeReturns));
366 366
         }
367 367
     }
368 368
 
@@ -380,9 +380,9 @@  discard block
 block discarded – undo
380 380
             $SSPconfig = \SimpleSAML\Configuration::getInstance();
381 381
             $sspVersion = explode('.', $SSPconfig->getVersion());
382 382
             if ((int) $sspVersion[0] >= $this->needversionSSP['major'] && (int) $sspVersion[1] >= $this->needversionSSP['minor']) {
383
-                $this->storeTestResult(\core\common\Entity::L_OK, "<strong>simpleSAMLphp</strong> is sufficiently recent. You are running " . implode('.', $sspVersion));
383
+                $this->storeTestResult(\core\common\Entity::L_OK, "<strong>simpleSAMLphp</strong> is sufficiently recent. You are running ".implode('.', $sspVersion));
384 384
             } else {
385
-                $this->storeTestResult(\core\common\Entity::L_ERROR, "<strong>simpleSAMLphp</strong> is too old. We need at least " . implode('.', $this->needversionSSP));
385
+                $this->storeTestResult(\core\common\Entity::L_ERROR, "<strong>simpleSAMLphp</strong> is too old. We need at least ".implode('.', $this->needversionSSP));
386 386
             }
387 387
         }
388 388
     }
@@ -409,7 +409,7 @@  discard block
 block discarded – undo
409 409
         $A = $this->getExecPath('zip');
410 410
         if ($A['exec'] != "") {
411 411
             $fullOutput = [];
412
-            $t = exec($A['exec'] . ' --version', $fullOutput);
412
+            $t = exec($A['exec'].' --version', $fullOutput);
413 413
             if ($A['exec_is'] == "EXPLICIT") {
414 414
                 $this->storeTestResult(\core\common\Entity::L_OK, "<strong>".$fullOutput[1]."</strong> was found and is configured explicitly in your config.");
415 415
             } else {
@@ -447,8 +447,8 @@  discard block
 block discarded – undo
447 447
      */
448 448
     private function testLogdir()
449 449
     {
450
-        if (fopen(\config\Master::PATHS['logdir'] . "/debug.log", "a") == FALSE) {
451
-            $this->storeTestResult(\core\common\Entity::L_WARN, "Log files in <strong>" . \config\Master::PATHS['logdir'] . "</strong> are not writable!");
450
+        if (fopen(\config\Master::PATHS['logdir']."/debug.log", "a") == FALSE) {
451
+            $this->storeTestResult(\core\common\Entity::L_WARN, "Log files in <strong>".\config\Master::PATHS['logdir']."</strong> are not writable!");
452 452
         } else {
453 453
             $this->storeTestResult(\core\common\Entity::L_OK, "Log directory is writable.");
454 454
         }
@@ -576,7 +576,7 @@  discard block
 block discarded – undo
576 576
     {
577 577
         $A = $this->getExecPath('openssl');
578 578
         if ($A['exec'] != "") {
579
-            $t = exec($A['exec'] . ' version');
579
+            $t = exec($A['exec'].' version');
580 580
             if ($A['exec_is'] == "EXPLICIT") {
581 581
                 $this->storeTestResult(\core\common\Entity::L_OK, "<strong>$t</strong> was found and is configured explicitly in your config.");
582 582
             } else {
@@ -604,14 +604,14 @@  discard block
 block discarded – undo
604 604
         }
605 605
         $A = $this->getExecPath('makensis');
606 606
         if ($A['exec'] != "") {
607
-            $t = exec($A['exec'] . ' -VERSION');
607
+            $t = exec($A['exec'].' -VERSION');
608 608
             if ($A['exec_is'] == "EXPLICIT") {
609 609
                 $this->storeTestResult(\core\common\Entity::L_OK, "<strong>makensis $t</strong> was found and is configured explicitly in your config.");
610 610
             } else {
611 611
                 $this->storeTestResult(\core\common\Entity::L_WARN, "<strong>makensis $t</strong> was found, but is not configured with an absolute path in your config.");
612 612
             }
613 613
             $outputArray = [];
614
-            exec($A['exec'] . ' -HELP', $outputArray);
614
+            exec($A['exec'].' -HELP', $outputArray);
615 615
             $t1 = count(preg_grep('/INPUTCHARSET/', $outputArray));
616 616
             if ($t1 == 1 && \config\ConfAssistant::NSIS_VERSION == 2) {
617 617
                 $this->storeTestResult(\core\common\Entity::L_ERROR, "Declared NSIS_VERSION does not seem to match the file pointed to by PATHS['makensis']!");
@@ -641,7 +641,7 @@  discard block
 block discarded – undo
641 641
         $NSIS_Module_status = [];
642 642
         foreach ($this->NSISModules as $module) {
643 643
             unset($out);
644
-            exec(\config\ConfAssistant::PATHS['makensis'] . " -V1 '-X!include $module' '-XOutFile $exe' '-XSection X' '-XSectionEnd'", $out, $retval);
644
+            exec(\config\ConfAssistant::PATHS['makensis']." -V1 '-X!include $module' '-XOutFile $exe' '-XSection X' '-XSectionEnd'", $out, $retval);
645 645
             if ($retval > 0) {
646 646
                 $NSIS_Module_status[$module] = 0;
647 647
             } else {
@@ -708,8 +708,8 @@  discard block
 block discarded – undo
708 708
         $locales = shell_exec("locale -a");
709 709
         $allthere = "";
710 710
         foreach (\config\Master::LANGUAGES as $onelanguage) {
711
-            if (preg_match("/" . $onelanguage['locale'] . "/", $locales) == 0) {
712
-                $allthere .= $onelanguage['locale'] . " ";
711
+            if (preg_match("/".$onelanguage['locale']."/", $locales) == 0) {
712
+                $allthere .= $onelanguage['locale']." ";
713 713
             }
714 714
         }
715 715
         if ($allthere == "") {
@@ -723,47 +723,47 @@  discard block
 block discarded – undo
723 723
         ["SETTING" => \config\Master::APPEARANCE['from-mail'],
724 724
             "DEFVALUE" => "[email protected]",
725 725
             "COMPLAINTSTRING" => "APPEARANCE/from-mail ",
726
-            "REQUIRED" => FALSE,],
726
+            "REQUIRED" => FALSE, ],
727 727
         ["SETTING" => \config\Master::APPEARANCE['support-contact']['url'],
728 728
             "DEFVALUE" => "[email protected]?body=Only%20English%20language%20please!",
729 729
             "COMPLAINTSTRING" => "APPEARANCE/support-contact/url ",
730
-            "REQUIRED" => FALSE,],
730
+            "REQUIRED" => FALSE, ],
731 731
         ["SETTING" => \config\Master::APPEARANCE['support-contact']['display'],
732 732
             "DEFVALUE" => "[email protected]",
733 733
             "COMPLAINTSTRING" => "APPEARANCE/support-contact/display ",
734
-            "REQUIRED" => FALSE,],
734
+            "REQUIRED" => FALSE, ],
735 735
         ["SETTING" => \config\Master::APPEARANCE['support-contact']['developer-mail'],
736 736
             "DEFVALUE" => "[email protected]",
737 737
             "COMPLAINTSTRING" => "APPEARANCE/support-contact/mail ",
738
-            "REQUIRED" => FALSE,],
738
+            "REQUIRED" => FALSE, ],
739 739
         ["SETTING" => \config\Master::APPEARANCE['abuse-mail'],
740 740
             "DEFVALUE" => "[email protected]",
741 741
             "COMPLAINTSTRING" => "APPEARANCE/abuse-mail ",
742
-            "REQUIRED" => FALSE,],
742
+            "REQUIRED" => FALSE, ],
743 743
         ["SETTING" => \config\Master::APPEARANCE['MOTD'],
744 744
             "DEFVALUE" => "Release Candidate. All bugs to be shot on sight!",
745 745
             "COMPLAINTSTRING" => "APPEARANCE/MOTD ",
746
-            "REQUIRED" => FALSE,],
746
+            "REQUIRED" => FALSE, ],
747 747
         ["SETTING" => \config\Master::APPEARANCE['webcert_CRLDP'],
748 748
             "DEFVALUE" => ['list', 'of', 'CRL', 'pointers'],
749 749
             "COMPLAINTSTRING" => "APPEARANCE/webcert_CRLDP ",
750
-            "REQUIRED" => TRUE,],
750
+            "REQUIRED" => TRUE, ],
751 751
         ["SETTING" => \config\Master::APPEARANCE['webcert_OCSP'],
752 752
             "DEFVALUE" => ['list', 'of', 'OCSP', 'pointers'],
753 753
             "COMPLAINTSTRING" => "APPEARANCE/webcert_OCSP ",
754
-            "REQUIRED" => TRUE,],
754
+            "REQUIRED" => TRUE, ],
755 755
         ["SETTING" => \config\Master::DB['INST']['host'],
756 756
             "DEFVALUE" => "db.host.example",
757 757
             "COMPLAINTSTRING" => "DB/INST ",
758
-            "REQUIRED" => TRUE,],
758
+            "REQUIRED" => TRUE, ],
759 759
         ["SETTING" => \config\Master::DB['INST']['host'],
760 760
             "DEFVALUE" => "db.host.example",
761 761
             "COMPLAINTSTRING" => "DB/USER ",
762
-            "REQUIRED" => TRUE,],
762
+            "REQUIRED" => TRUE, ],
763 763
         ["SETTING" => \config\Master::DB['EXTERNAL']['host'],
764 764
             "DEFVALUE" => "customerdb.otherhost.example",
765 765
             "COMPLAINTSTRING" => "DB/EXTERNAL ",
766
-            "REQUIRED" => FALSE,],
766
+            "REQUIRED" => FALSE, ],
767 767
     ];
768 768
 
769 769
     /**
@@ -792,11 +792,11 @@  discard block
 block discarded – undo
792 792
         if (isset(\config\Diagnostics::RADIUSTESTS['TLS-clientcerts'])) {
793 793
             foreach (\config\Diagnostics::RADIUSTESTS['TLS-clientcerts'] as $cadata) {
794 794
                 foreach ($cadata['certificates'] as $cert_files) {
795
-                    if (file_get_contents(ROOT . "/config/cli-certs/" . $cert_files['public']) === FALSE) {
796
-                        $defaultvalues .= "CERTIFICATE/" . $cert_files['public'] . " ";
795
+                    if (file_get_contents(ROOT."/config/cli-certs/".$cert_files['public']) === FALSE) {
796
+                        $defaultvalues .= "CERTIFICATE/".$cert_files['public']." ";
797 797
                     }
798
-                    if (file_get_contents(ROOT . "/config/cli-certs/" . $cert_files['private']) === FALSE) {
799
-                        $defaultvalues .= "CERTIFICATE/" . $cert_files['private'] . " ";
798
+                    if (file_get_contents(ROOT."/config/cli-certs/".$cert_files['private']) === FALSE) {
799
+                        $defaultvalues .= "CERTIFICATE/".$cert_files['private']." ";
800 800
                     }
801 801
                 }
802 802
             }
@@ -889,14 +889,14 @@  discard block
 block discarded – undo
889 889
         if ($global_no_cache) {
890 890
             foreach ($Devs as $dev => $D) {
891 891
                 if (empty($D['options']['no_cache']) || $D['options']['no_cache'] != 0) {
892
-                    $no_cache_dev .= $dev . " ";
892
+                    $no_cache_dev .= $dev." ";
893 893
                     $no_cache_dev_count++;
894 894
                 }
895 895
             }
896 896
         } else {
897 897
             foreach ($Devs as $dev => $D) {
898 898
                 if (!empty($D['options']['no_cache']) && $D['options']['no_cache'] != 0) {
899
-                    $no_cache_dev .= $dev . " ";
899
+                    $no_cache_dev .= $dev." ";
900 900
                     $no_cache_dev_count++;
901 901
                 }
902 902
             }
@@ -935,13 +935,13 @@  discard block
 block discarded – undo
935 935
         $mail->isHTML(FALSE);
936 936
         $mail->CharSet = 'UTF-8';
937 937
         $mail->From = \config\Master::APPEARANCE['from-mail'];
938
-        $mail->FromName = \config\Master::APPEARANCE['productname'] . " Invitation System";
938
+        $mail->FromName = \config\Master::APPEARANCE['productname']." Invitation System";
939 939
         $mail->addAddress(\config\Master::APPEARANCE['abuse-mail']);
940 940
         $mail->Subject = "testing CAT configuration mail";
941 941
         $mail->Body = "Testing CAT mailing\n";
942 942
         $sent = $mail->send();
943 943
         if ($sent) {
944
-            $this->storeTestResult(\core\common\Entity::L_OK, "mailer settings appear to be working, check " . \config\Master::APPEARANCE['abuse-mail'] . " mailbox if the message was receiced.");
944
+            $this->storeTestResult(\core\common\Entity::L_OK, "mailer settings appear to be working, check ".\config\Master::APPEARANCE['abuse-mail']." mailbox if the message was receiced.");
945 945
         } else {
946 946
             $this->storeTestResult(\core\common\Entity::L_ERROR, "mailer settings failed, check the Config::MAILSETTINGS");
947 947
         }
Please login to merge, or discard this patch.
web/admin/overview_certificates.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
  */
27 27
 ?>
28 28
 <?php
29
-require_once dirname(dirname(dirname(__FILE__))) . "/config/_config.php";
29
+require_once dirname(dirname(dirname(__FILE__)))."/config/_config.php";
30 30
 
31 31
 $auth = new \web\lib\admin\Authentication();
32 32
 $deco = new \web\lib\admin\PageDecoration();
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
     $feds = $user->getAttributes("user:fedadmin");
71 71
     foreach ($feds as $oneFed) {
72 72
         $theFed = new \core\Federation($oneFed['value']);
73
-        printf("<p>" . _("Certificate Information for %s %s"), $uiElements->nomenclatureFed, $theFed->name) . "</p>";
73
+        printf("<p>"._("Certificate Information for %s %s"), $uiElements->nomenclatureFed, $theFed->name)."</p>";
74 74
         foreach ($theFed->listTlsCertificates() as $oneCert) {
75 75
             if ($oneCert['STATUS'] == "REQUESTED") {
76 76
                 $theFed->updateCertificateStatus($oneCert['REQSERIAL']);
@@ -81,12 +81,12 @@  discard block
 block discarded – undo
81 81
         foreach ($theFed->listTlsCertificates() as $oneCert) { // fetch list a second time, in case we got a cert
82 82
             $status = $oneCert['STATUS'];
83 83
             echo "<tr>";
84
-            echo "<td>" . $oneCert['REQSERIAL'] . "</td><td>" . $oneCert['DN'] . "</td><td>" . $status . "</td><td>" . $oneCert['EXPIRY'] . "</td>";
84
+            echo "<td>".$oneCert['REQSERIAL']."</td><td>".$oneCert['DN']."</td><td>".$status."</td><td>".$oneCert['EXPIRY']."</td>";
85 85
             if ($status == "ISSUED") {
86 86
                 ?>
87 87
             <td>
88 88
                 <form action='inc/showCert.inc.php' onsubmit='popupRedirectWindow(this); return false;' accept-charset='UTF-8' method="POST">
89
-                    <input type="hidden" name="certdata" value="<?php echo $oneCert['CERT'];?>"/>
89
+                    <input type="hidden" name="certdata" value="<?php echo $oneCert['CERT']; ?>"/>
90 90
                 <button type="submit">Display</button>
91 91
                 </form>
92 92
             <td>
Please login to merge, or discard this patch.
web/admin/inc/showCert.inc.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@
 block discarded – undo
20 20
  */
21 21
 ?>
22 22
 <?php
23
-require_once dirname(dirname(dirname(dirname(__FILE__)))) . "/config/_config.php";
23
+require_once dirname(dirname(dirname(dirname(__FILE__))))."/config/_config.php";
24 24
 
25 25
 $auth = new \web\lib\admin\Authentication();
26 26
 $languageInstance = new \core\common\Language();
Please login to merge, or discard this patch.
web/admin/overview_federation.php 1 patch
Spacing   +36 added lines, -36 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@  discard block
 block discarded – undo
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
 $deco = new \web\lib\admin\PageDecoration();
25 25
 $uiElements = new web\lib\admin\UIElements();
@@ -50,16 +50,16 @@  discard block
 block discarded – undo
50 50
     <div class="infobox">
51 51
         <h2><?php $tablecaption = _("Your Personal Information"); echo $tablecaption; ?></h2>
52 52
         <table>
53
-            <caption><?php echo $tablecaption;?></caption>
53
+            <caption><?php echo $tablecaption; ?></caption>
54 54
             <tr>
55
-                <th class="wai-invisible" scope="col"><?php echo _("Property Type");?></th>
56
-                <th class="wai-invisible" scope="col"><?php echo _("Language if applicable");?></th>
57
-                <th class="wai-invisible" scope="col"><?php echo _("Property Value");?></th>
55
+                <th class="wai-invisible" scope="col"><?php echo _("Property Type"); ?></th>
56
+                <th class="wai-invisible" scope="col"><?php echo _("Language if applicable"); ?></th>
57
+                <th class="wai-invisible" scope="col"><?php echo _("Property Value"); ?></th>
58 58
             </tr>            
59 59
             <?php echo $uiElements->infoblock($user->getAttributes(), "user", "User"); ?>
60 60
             <tr>
61 61
                 <td>
62
-                    <?php echo "" . _("Unique Identifier") ?>
62
+                    <?php echo ""._("Unique Identifier") ?>
63 63
                 </td>
64 64
                 <td>
65 65
                 </td>
@@ -71,14 +71,14 @@  discard block
 block discarded – undo
71 71
     </div>
72 72
 
73 73
     <form action='overview_certificates.php' method='GET' accept-charset='UTF-8'>
74
-        <button type='submit'><?php echo sprintf(_('RADIUS/TLS Certificate management'));?></button>
74
+        <button type='submit'><?php echo sprintf(_('RADIUS/TLS Certificate management')); ?></button>
75 75
     </form>
76 76
 
77 77
     <?php
78 78
     $mgmt = new \core\UserManagement();
79 79
 
80 80
     if (!$user->isFederationAdmin()) {
81
-        echo "<p>" . sprintf(_("You are not a %s manager."), $uiElements->nomenclatureFed) . "</p>";
81
+        echo "<p>".sprintf(_("You are not a %s manager."), $uiElements->nomenclatureFed)."</p>";
82 82
         echo $deco->footer();
83 83
         exit(0);
84 84
     }
@@ -92,16 +92,16 @@  discard block
 block discarded – undo
92 92
                 <?php $tablecaption2 = sprintf(_("%s Properties: %s"), $uiElements->nomenclatureFed, $thefed->name); echo $tablecaption2; ?>
93 93
             </h2>
94 94
             <table>
95
-            <caption><?php echo $tablecaption2;?></caption>
95
+            <caption><?php echo $tablecaption2; ?></caption>
96 96
             <tr>
97
-                <th class="wai-invisible" scope="col"><?php echo _("Property Type");?></th>
98
-                <th class="wai-invisible" scope="col"><?php echo _("Language if applicable");?></th>
99
-                <th class="wai-invisible" scope="col"><?php echo _("Property Value");?></th>
97
+                <th class="wai-invisible" scope="col"><?php echo _("Property Type"); ?></th>
98
+                <th class="wai-invisible" scope="col"><?php echo _("Language if applicable"); ?></th>
99
+                <th class="wai-invisible" scope="col"><?php echo _("Property Value"); ?></th>
100 100
             </tr>
101 101
                 <!-- fed properties -->
102 102
                 <tr>
103 103
                     <td>
104
-                        <?php echo "" . _("Country") ?>
104
+                        <?php echo ""._("Country") ?>
105 105
                     </td>
106 106
                     <td>
107 107
                     </td>
@@ -182,7 +182,7 @@  discard block
 block discarded – undo
182 182
                     default:
183 183
                         throw new Exception("Error: unknown encryption status of invitation!?!");
184 184
                 }
185
-                echo $uiElements->boxRemark(ngettext("The invitation email was sent successfully.", "All invitation emails were sent successfully.", $counter) . " " . $cryptText, _("Sent successfully."));
185
+                echo $uiElements->boxRemark(ngettext("The invitation email was sent successfully.", "All invitation emails were sent successfully.", $counter)." ".$cryptText, _("Sent successfully."));
186 186
                 break;
187 187
             case "FAILURE":
188 188
                 echo $uiElements->boxError(_("No invitation email could be sent!"), _("Sending failure!"));
@@ -202,7 +202,7 @@  discard block
 block discarded – undo
202 202
                     default:
203 203
                         throw new Exception("Error: unknown encryption status of invitation!?!");
204 204
                 }
205
-                echo $uiElements->boxWarning(sprintf(_("Some invitation emails were sent successfully (%s in total), the others failed."), $counter) . " " . $cryptText, _("Partial success."));
205
+                echo $uiElements->boxWarning(sprintf(_("Some invitation emails were sent successfully (%s in total), the others failed."), $counter)." ".$cryptText, _("Partial success."));
206 206
                 break;
207 207
             case "INVALIDSYNTAX":
208 208
                 echo $uiElements->boxError(_("The invitation email address was malformed, no invitation was sent!"), _("The invitation email address was malformed, no invitation was sent!"));
@@ -218,27 +218,27 @@  discard block
 block discarded – undo
218 218
     } else {
219 219
         $link = 'http://';
220 220
     }
221
-    $link .= $_SERVER['SERVER_NAME'] . $_SERVER['SCRIPT_NAME'];
221
+    $link .= $_SERVER['SERVER_NAME'].$_SERVER['SCRIPT_NAME'];
222 222
     $link = htmlspecialchars($link);
223 223
     if (\config\Master::FUNCTIONALITY_LOCATIONS['CONFASSISTANT_RADIUS'] == 'LOCAL' && \config\Master::FUNCTIONALITY_LOCATIONS['DIAGNOSTICS'] == 'LOCAL') {
224 224
         echo "<table><tr>
225
-                        <td>" . sprintf(_("Diagnose reachability and connection parameters of any %s %s"), \config\ConfAssistant::CONSORTIUM['display_name'], $uiElements->nomenclatureIdP) . "</td>
225
+                        <td>" . sprintf(_("Diagnose reachability and connection parameters of any %s %s"), \config\ConfAssistant::CONSORTIUM['display_name'], $uiElements->nomenclatureIdP)."</td>
226 226
                         <td><form method='post' action='../diag/action_realmcheck.php' accept-charset='UTF-8'>
227 227
                               <input type='hidden' name='comefrom' id='comefrom' value='$link'/>
228
-                              <button id='realmcheck' style='cursor:pointer;' type='submit'>" . _("Go!") . "</button>
228
+                              <button id='realmcheck' style='cursor:pointer;' type='submit'>"._("Go!")."</button>
229 229
                             </form>
230 230
                         </td>
231 231
                     </tr>
232 232
                     </table>";
233 233
     }
234 234
     if (\config\ConfAssistant::CONSORTIUM['name'] == 'eduroam') {
235
-        $helptext = "<h3>" . sprintf(_("Need help? Refer to the <a href='%s'>%s manual</a>"), "https://wiki.geant.org/x/qJg7Bw", $uiElements->nomenclatureFed) . "</h3>";
235
+        $helptext = "<h3>".sprintf(_("Need help? Refer to the <a href='%s'>%s manual</a>"), "https://wiki.geant.org/x/qJg7Bw", $uiElements->nomenclatureFed)."</h3>";
236 236
     } else {
237 237
         $helptext = "";
238 238
     }
239 239
     ?>
240 240
     <table class='user_overview' style='border:0px; width:unset'>
241
-        <caption><?php echo _("Participant Details");?></caption>
241
+        <caption><?php echo _("Participant Details"); ?></caption>
242 242
         <tr>
243 243
             <th scope='col' style="width:13em"><?php echo _("Configured / Visible / OpenRoaming"); ?></th>
244 244
             <th scope='col'><?php echo sprintf(_("%s Name"), $uiElements->nomenclatureParticipant); ?></th>
@@ -247,7 +247,7 @@  discard block
 block discarded – undo
247 247
             $pending_invites = $mgmt->listPendingInvitations();
248 248
 
249 249
             if (\config\Master::DB['enforce-external-sync']) {
250
-                echo "<th scope='col'>" . sprintf(_("%s Database Sync Status"), \config\ConfAssistant::CONSORTIUM['display_name']) . "</th>";
250
+                echo "<th scope='col'>".sprintf(_("%s Database Sync Status"), \config\ConfAssistant::CONSORTIUM['display_name'])."</th>";
251 251
             }
252 252
             ?>
253 253
             <th scope='col'>
@@ -262,7 +262,7 @@  discard block
 block discarded – undo
262 262
         foreach ($feds as $onefed) {
263 263
             $thefed = new \core\Federation(strtoupper($onefed['value']));
264 264
             /// nomenclature for 'federation', federation name, nomenclature for 'inst'
265
-            echo "<tr><td colspan='8'><strong>" . sprintf(_("The following %s are in your %s %s:"), $uiElements->nomenclatureParticipant, $uiElements->nomenclatureFed, '<span style="color:green">' . $thefed->name . '</span>') . "</strong></td></tr>";
265
+            echo "<tr><td colspan='8'><strong>".sprintf(_("The following %s are in your %s %s:"), $uiElements->nomenclatureParticipant, $uiElements->nomenclatureFed, '<span style="color:green">'.$thefed->name.'</span>')."</strong></td></tr>";
266 266
 
267 267
             // extract only pending invitations for *this* fed
268 268
             $display_pendings = FALSE;
@@ -287,9 +287,9 @@  discard block
 block discarded – undo
287 287
                 // deployment status; need to dive into profiles for this
288 288
                 // show happy eyeballs if at least one profile is configured/showtime                    
289 289
                 echo "<td>";
290
-                echo ($idp_instance->maxProfileStatus() >= \core\IdP::PROFILES_CONFIGURED ? "C" : "-" ) 
290
+                echo ($idp_instance->maxProfileStatus() >= \core\IdP::PROFILES_CONFIGURED ? "C" : "-") 
291 291
                         . " " 
292
-                        . ($idp_instance->maxProfileStatus() >= \core\IdP::PROFILES_SHOWTIME ? "V" : "-" )
292
+                        . ($idp_instance->maxProfileStatus() >= \core\IdP::PROFILES_SHOWTIME ? "V" : "-")
293 293
                         . " "
294 294
                         . "<span style='color:";
295 295
                 switch ($idp_instance->maxOpenRoamingStatus()) {
@@ -324,23 +324,23 @@  discard block
 block discarded – undo
324 324
                     }
325 325
                 }
326 326
                 echo "<td style='vertical-align:top;'>
327
-                         <input type='hidden' name='inst' value='" . $index . "'>" . $idp_instance->name . (empty($listOfSilverbulletRealms) ? "" : "<ul><li>" ) . implode("</li><li>", $listOfSilverbulletRealms) . (empty($listOfSilverbulletRealms) ? "" : "</li><ul>" ) . "
327
+                         <input type='hidden' name='inst' value='" . $index."'>".$idp_instance->name.(empty($listOfSilverbulletRealms) ? "" : "<ul><li>").implode("</li><li>", $listOfSilverbulletRealms).(empty($listOfSilverbulletRealms) ? "" : "</li><ul>")."
328 328
                       </td>";
329 329
                 // external DB sync, if configured as being necessary
330 330
                 if (\config\Master::DB['enforce-external-sync']) {
331 331
                     echo "<td style='display: ruby;'>";
332 332
                     if ($readonly === FALSE) {
333
-                        echo "<form method='post' action='inc/manageDBLink.inc.php?inst_id=" . $idp_instance->identifier . "' onsubmit='popupRedirectWindow(this); return false;' accept-charset='UTF-8'>
334
-                                    <button type='submit'>" . _("Manage DB Link") . "</button></form>&nbsp;&nbsp;";
333
+                        echo "<form method='post' action='inc/manageDBLink.inc.php?inst_id=".$idp_instance->identifier."' onsubmit='popupRedirectWindow(this); return false;' accept-charset='UTF-8'>
334
+                                    <button type='submit'>" . _("Manage DB Link")."</button></form>&nbsp;&nbsp;";
335 335
                     }
336 336
                     switch ($idp_instance->getExternalDBSyncState()) {
337 337
                         case \core\IdP::EXTERNAL_DB_SYNCSTATE_NOTSUBJECTTOSYNCING:
338 338
                             break;
339 339
                         case \core\IdP::EXTERNAL_DB_SYNCSTATE_SYNCED:
340
-                            echo "<div class='acceptable'>" . _("Linked") . "</div>";
340
+                            echo "<div class='acceptable'>"._("Linked")."</div>";
341 341
                             break;
342 342
                         case \core\IdP::EXTERNAL_DB_SYNCSTATE_NOT_SYNCED:
343
-                            echo "<div class='notacceptable'>" . _("NOT linked") . "</div>";
343
+                            echo "<div class='notacceptable'>"._("NOT linked")."</div>";
344 344
 
345 345
 
346 346
                             break;
@@ -353,9 +353,9 @@  discard block
 block discarded – undo
353 353
                 echo "<td style='vertical-align: top;'>";
354 354
                 if ($readonly === FALSE) {
355 355
                     echo "<div style='white-space: nowrap;'>
356
-                                  <form method='post' action='inc/manageAdmins.inc.php?inst_id=" . $index . "' onsubmit='popupRedirectWindow(this); return false;' accept-charset='UTF-8'>
356
+                                  <form method='post' action='inc/manageAdmins.inc.php?inst_id=" . $index."' onsubmit='popupRedirectWindow(this); return false;' accept-charset='UTF-8'>
357 357
                                       <button type='submit'>" .
358
-                    _("Add/Remove Administrators") . "
358
+                    _("Add/Remove Administrators")."
359 359
                                       </button>
360 360
                                   </form>
361 361
                                 </div>";
@@ -368,7 +368,7 @@  discard block
 block discarded – undo
368 368
                 echo "<tr>
369 369
                             <td colspan='2'>
370 370
                                <strong>" .
371
-                sprintf(_("Pending invitations in the %s:"), $uiElements->nomenclatureFed) . "
371
+                sprintf(_("Pending invitations in the %s:"), $uiElements->nomenclatureFed)."
372 372
                                </strong>
373 373
                             </td>
374 374
                          </tr>";
@@ -376,16 +376,16 @@  discard block
 block discarded – undo
376 376
                     if (strtoupper($oneinvite['country']) == strtoupper($thefed->tld)) {
377 377
                         echo "<tr>
378 378
                                     <td>" .
379
-                        $oneinvite['name'] . "
379
+                        $oneinvite['name']."
380 380
                                     </td>
381 381
                                     <td>" .
382
-                        $oneinvite['mail'] . "
382
+                        $oneinvite['mail']."
383 383
                                     </td>
384 384
                                     <td colspan=2>";
385 385
                         if ($readonly === FALSE) {
386 386
                             echo "<form method='post' action='overview_federation.php' accept-charset='UTF-8'>
387
-                                <input type='hidden' name='invitation_id' value='" . $oneinvite['token'] . "'/>
388
-                                <button class='delete' type='submit' name='submitbutton' value='" . web\lib\common\FormElements::BUTTON_DELETE . "'>" . _("Revoke Invitation") . "</button> "
387
+                                <input type='hidden' name='invitation_id' value='" . $oneinvite['token']."'/>
388
+                                <button class='delete' type='submit' name='submitbutton' value='" . web\lib\common\FormElements::BUTTON_DELETE."'>"._("Revoke Invitation")."</button> "
389 389
                             . sprintf(_("(expires %s)"), $oneinvite['expiry'])
390 390
                             . "</form>";
391 391
                         }
Please login to merge, or discard this patch.
web/lib/user/Gui.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -61,10 +61,10 @@
 block discarded – undo
61 61
         header("Content-Type:text/html;charset=utf-8");
62 62
         ?>
63 63
         <!DOCTYPE html>
64
-          <html xmlns='http://www.w3.org/1999/xhtml' lang='<?php echo $ourlocale;?>' <?php echo ($direction ? "dir='rtl'" : "");?>>
65
-          <head lang='<?php echo $ourlocale;?>'>
64
+          <html xmlns='http://www.w3.org/1999/xhtml' lang='<?php echo $ourlocale; ?>' <?php echo ($direction ? "dir='rtl'" : ""); ?>>
65
+          <head lang='<?php echo $ourlocale; ?>'>
66 66
           <meta http-equiv='Content-Type' content='text/html; charset=UTF-8'>
67
-          <title><?php echo htmlspecialchars($pagetitle);?></title>
67
+          <title><?php echo htmlspecialchars($pagetitle); ?></title>
68 68
           <script type="text/javascript">ie_version = 0;</script>
69 69
 <!--[if IE]>
70 70
 <script type="text/javascript">ie_version=1;</script>
Please login to merge, or discard this patch.
web/lib/admin/OptionParser.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -101,7 +101,7 @@  discard block
 block discarded – undo
101 101
                 $optionClass = \core\Options::instance();
102 102
                 $optionProps = $optionClass->optionType($optiontype);
103 103
                 $allowedValues = explode(',', substr($optionProps["flags"], 7));
104
-                if (in_array($incomingBinary,$allowedValues))  {
104
+                if (in_array($incomingBinary, $allowedValues)) {
105 105
                     return TRUE;
106 106
                 }
107 107
                 return FALSE;
@@ -347,14 +347,14 @@  discard block
 block discarded – undo
347 347
                 case \core\Options::TYPECODE_TEXT:
348 348
                 case \core\Options::TYPECODE_COORDINATES:
349 349
                 case \core\Options::TYPECODE_INTEGER:
350
-                    $varName = $listOfEntries["$objId-" . self::VALIDATOR_FUNCTIONS[$optioninfo['type']]['field']];
350
+                    $varName = $listOfEntries["$objId-".self::VALIDATOR_FUNCTIONS[$optioninfo['type']]['field']];
351 351
                     if (!empty($varName)) {
352 352
                         $content = call_user_func_array([$this->validator, self::VALIDATOR_FUNCTIONS[$optioninfo['type']]['function']], array_merge([$varName], self::VALIDATOR_FUNCTIONS[$optioninfo['type']]['extraarg']));
353 353
                         break;
354 354
                     }
355 355
                     continue 2;
356 356
                 case \core\Options::TYPECODE_BOOLEAN:
357
-                    $varName = $listOfEntries["$objId-" . \core\Options::TYPECODE_BOOLEAN];
357
+                    $varName = $listOfEntries["$objId-".\core\Options::TYPECODE_BOOLEAN];
358 358
                     if (!empty($varName)) {
359 359
                         $contentValid = $this->validator->boolean($varName);
360 360
                         if ($contentValid) {
@@ -367,7 +367,7 @@  discard block
 block discarded – undo
367 367
                     }
368 368
                     continue 2;
369 369
                 case \core\Options::TYPECODE_STRING:
370
-                    $previsionalContent = $listOfEntries["$objId-" . \core\Options::TYPECODE_STRING];
370
+                    $previsionalContent = $listOfEntries["$objId-".\core\Options::TYPECODE_STRING];
371 371
                     if (!empty(trim($previsionalContent))) {
372 372
                         $content = $this->furtherStringChecks($objValue, $previsionalContent, $bad);
373 373
                         if ($content === FALSE) {
@@ -378,7 +378,7 @@  discard block
 block discarded – undo
378 378
                     continue 2;
379 379
                     
380 380
                 case \core\Options::TYPECODE_ENUM_OPENROAMING:
381
-                    $previsionalContent = $listOfEntries["$objId-" . \core\Options::TYPECODE_ENUM_OPENROAMING];
381
+                    $previsionalContent = $listOfEntries["$objId-".\core\Options::TYPECODE_ENUM_OPENROAMING];
382 382
                     if (!empty($previsionalContent)) {
383 383
                         $content = $this->furtherStringChecks($objValue, $previsionalContent, $bad);
384 384
                         if ($content === FALSE) {
@@ -389,15 +389,15 @@  discard block
 block discarded – undo
389 389
                     continue 2;    
390 390
                 case \core\Options::TYPECODE_FILE:
391 391
                     // this is either actually an uploaded file, or a reference to a DB entry of a previously uploaded file
392
-                    $reference = $listOfEntries["$objId-" . \core\Options::TYPECODE_STRING];
392
+                    $reference = $listOfEntries["$objId-".\core\Options::TYPECODE_STRING];
393 393
                     if (!empty($reference)) { // was already in, by ROWID reference, extract
394 394
                         // ROWID means it's a multi-line string (simple strings are inline in the form; so allow whitespace)
395 395
                         $content = $this->validator->string(urldecode($reference), TRUE);
396 396
                         break;
397 397
                     }
398
-                    $fileName = $listOfEntries["$objId-" . \core\Options::TYPECODE_FILE] ?? "";
398
+                    $fileName = $listOfEntries["$objId-".\core\Options::TYPECODE_FILE] ?? "";
399 399
                     if ($fileName != "") { // let's do the download
400
-                        $rawContent = \core\common\OutsideComm::downloadFile("file:///" . $fileName);
400
+                        $rawContent = \core\common\OutsideComm::downloadFile("file:///".$fileName);
401 401
 
402 402
                         if ($rawContent === FALSE || !$this->checkUploadSanity($objValue, $rawContent)) {
403 403
                             $bad[] = $objValue;
@@ -408,7 +408,7 @@  discard block
 block discarded – undo
408 408
                     }
409 409
                     continue 2;
410 410
                 default:
411
-                    throw new Exception("Internal Error: Unknown option type " . $objValue . "!");
411
+                    throw new Exception("Internal Error: Unknown option type ".$objValue."!");
412 412
             }
413 413
             // lang can be NULL here, if it's not a multilang attribute, or a ROWID reference. Never mind that.
414 414
             $retval[] = ["$objValue" => ["lang" => $languageFlag, "content" => $content]];
Please login to merge, or discard this patch.
web/admin/inc/overview_js.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@
 block discarded – undo
69 69
     $langInstance = new core\common\Language();
70 70
     $end = $langInstance->rtl ? "left" : "right";
71 71
     ?>
72
-    pressedButton.next().append('<span style="padding-<?php echo $end;?>:1em">'+msg+'<\/span>');
72
+    pressedButton.next().append('<span style="padding-<?php echo $end; ?>:1em">'+msg+'<\/span>');
73 73
     }
74 74
     );
75 75
     }
Please login to merge, or discard this patch.
core/common/Language.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -81,9 +81,9 @@  discard block
 block discarded – undo
81 81
         $loggerInstance = new \core\common\Logging();
82 82
         $olddomain = textdomain(NULL);
83 83
         $loggerInstance->debug(4, "set_locale($domain)\n");
84
-        $loggerInstance->debug(4, ROOT . "\n");
84
+        $loggerInstance->debug(4, ROOT."\n");
85 85
         textdomain($domain);
86
-        bindtextdomain($domain, ROOT . "/translation/");
86
+        bindtextdomain($domain, ROOT."/translation/");
87 87
         bind_textdomain_codeset($domain, "UTF-8");
88 88
         return $olddomain;
89 89
     }
@@ -136,7 +136,7 @@  discard block
 block discarded – undo
136 136
 
137 137
             // check if this language is supported by the CAT config
138 138
             foreach (\config\Master::LANGUAGES as $language => $value) {
139
-                if (preg_match("/^" . $language . ".*/", $tryLang)) {
139
+                if (preg_match("/^".$language.".*/", $tryLang)) {
140 140
                     $localeTmp = $value['locale'];
141 141
                     $langIndex = $language; // ???
142 142
                     break;
@@ -152,11 +152,11 @@  discard block
 block discarded – undo
152 152
             }
153 153
         }
154 154
         $isRtl = \config\Master::LANGUAGES[$langIndex]['rtl'];
155
-        putenv("LC_ALL=" . $theLocale);
155
+        putenv("LC_ALL=".$theLocale);
156 156
         $_SESSION['language'] = $langIndex;
157 157
         $loggerInstance->debug(4, "selected lang:$langIndex:$theLocale\n");
158 158
         $loggerInstance->debug(4, print_r($langConverted, true));
159
-        return([$langIndex, $theLocale,$isRtl]);
159
+        return([$langIndex, $theLocale, $isRtl]);
160 160
     }
161 161
 
162 162
     /**
Please login to merge, or discard this patch.