Test Setup Failed
Push — master ( 2141ae...923c9d )
by Maja
07:22
created
web/diag/testSociopath.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
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
 
24 24
 $sociopath = new \core\diag\Sociopath();
25 25
 
Please login to merge, or discard this patch.
web/lib/user/Skinjob.php 2 patches
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -95,17 +95,17 @@
 block discarded – undo
95 95
         }
96 96
 
97 97
         // does the file exist in the current skin's directory? Has precedence
98
-        if ($submodule !== '' && file_exists(__DIR__ . "/../../skins/" . $this->skin . "/" . $submodule . $path . $filename)) {
99
-            $extrapath = "/skins/" . $this->skin . "/" . $submodule;
98
+        if ($submodule !== '' && file_exists(__DIR__."/../../skins/".$this->skin."/".$submodule.$path.$filename)) {
99
+            $extrapath = "/skins/".$this->skin."/".$submodule;
100 100
         }
101
-        elseif (file_exists(__DIR__ . "/../../skins/" . $this->skin . $path . $filename)) {
102
-            $extrapath = "/skins/" . $this->skin;
103
-        } elseif (file_exists(__DIR__ . "/../../" . $path . $filename)) {
101
+        elseif (file_exists(__DIR__."/../../skins/".$this->skin.$path.$filename)) {
102
+            $extrapath = "/skins/".$this->skin;
103
+        } elseif (file_exists(__DIR__."/../../".$path.$filename)) {
104 104
             $extrapath = "";
105 105
         } else {
106 106
             return FALSE;
107 107
         }       
108
-        return htmlspecialchars(\core\CAT::getRootUrlPath() . $extrapath . $path . $filename, ENT_QUOTES);
108
+        return htmlspecialchars(\core\CAT::getRootUrlPath().$extrapath.$path.$filename, ENT_QUOTES);
109 109
     }
110 110
 
111 111
 }
Please login to merge, or discard this patch.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -97,8 +97,7 @@
 block discarded – undo
97 97
         // does the file exist in the current skin's directory? Has precedence
98 98
         if ($submodule !== '' && file_exists(__DIR__ . "/../../skins/" . $this->skin . "/" . $submodule . $path . $filename)) {
99 99
             $extrapath = "/skins/" . $this->skin . "/" . $submodule;
100
-        }
101
-        elseif (file_exists(__DIR__ . "/../../skins/" . $this->skin . $path . $filename)) {
100
+        } elseif (file_exists(__DIR__ . "/../../skins/" . $this->skin . $path . $filename)) {
102 101
             $extrapath = "/skins/" . $this->skin;
103 102
         } elseif (file_exists(__DIR__ . "/../../" . $path . $filename)) {
104 103
             $extrapath = "";
Please login to merge, or discard this patch.
web/lib/admin/MapNone.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -83,7 +83,7 @@
 block discarded – undo
83 83
      */
84 84
     public function htmlShowtime($wizard = FALSE, $additional = FALSE) {
85 85
         if (!$this->readOnly) {
86
- //           return $this->htmlPreEdit($wizard, $additional) . $this->htmlPostEdit(TRUE);
86
+    //           return $this->htmlPreEdit($wizard, $additional) . $this->htmlPostEdit(TRUE);
87 87
             return $this->htmlPreEdit($wizard, $additional) . $this->findLocationHtml() . $this->htmlPostEdit(TRUE);
88 88
         }
89 89
     }
Please login to merge, or discard this patch.
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -82,7 +82,7 @@  discard block
 block discarded – undo
82 82
     public function htmlShowtime($wizard = FALSE, $additional = FALSE) {
83 83
         if (!$this->readOnly) {
84 84
  //           return $this->htmlPreEdit($wizard, $additional) . $this->htmlPostEdit(TRUE);
85
-            return $this->htmlPreEdit($wizard, $additional) . $this->findLocationHtml() . $this->htmlPostEdit(TRUE);
85
+            return $this->htmlPreEdit($wizard, $additional).$this->findLocationHtml().$this->htmlPostEdit(TRUE);
86 86
         }
87 87
     }
88 88
 
@@ -104,11 +104,11 @@  discard block
 block discarded – undo
104 104
      */
105 105
     public static function optionListDisplayCode($coords, $number) {
106 106
         // quiesce warnings about unused parameter
107
-        if (strlen(sprintf("%d", $number)) <0) {
107
+        if (strlen(sprintf("%d", $number)) < 0) {
108 108
             throw new \Exception("A miracle! A string with negative length!");
109 109
         };
110 110
         $pair = json_decode($coords, true);
111
-        return "<table><tr><td>Latitude</td><td><strong>" . $pair['lat'] . "</strong></td></tr><tr><td>Longitude</td><td><strong>" . $pair['lon'] . "</strong></td></tr></table>";
111
+        return "<table><tr><td>Latitude</td><td><strong>".$pair['lat']."</strong></td></tr><tr><td>Longitude</td><td><strong>".$pair['lon']."</strong></td></tr></table>";
112 112
     }
113 113
     
114 114
     /**
@@ -118,7 +118,7 @@  discard block
 block discarded – undo
118 118
      */
119 119
     private function findLocationHtml() {
120 120
         \core\common\Entity::intoThePotatoes();
121
-        $retval = "<button type='button' onclick='locateMe()'>" . _("Locate Me!") . "</button></p>";
121
+        $retval = "<button type='button' onclick='locateMe()'>"._("Locate Me!")."</button></p>";
122 122
         \core\common\Entity::outOfThePotatoes();
123 123
         return $retval;
124 124
     }
Please login to merge, or discard this patch.
web/lib/admin/Maintenance.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -34,8 +34,8 @@  discard block
 block discarded – undo
34 34
      */
35 35
     public static function deleteObsoleteTempDirs() {
36 36
         $downloadsDirs = [
37
-            'site_installers' => dirname(dirname(dirname(dirname(__FILE__)))) . "/var/installer_cache",
38
-            'silverbullet' => dirname(dirname(dirname(dirname(__FILE__)))) . "/var/silverbullet"
37
+            'site_installers' => dirname(dirname(dirname(dirname(__FILE__))))."/var/installer_cache",
38
+            'silverbullet' => dirname(dirname(dirname(dirname(__FILE__))))."/var/silverbullet"
39 39
         ];
40 40
         $tm = time();
41 41
         $i = 0;
@@ -54,14 +54,14 @@  discard block
 block discarded – undo
54 54
                     if ($entry === '.' || $entry === '..' || $entry === '.gitignore') {
55 55
                         continue;
56 56
                     }
57
-                    $ftime = $tm - filemtime($downloads . '/' . $entry);
57
+                    $ftime = $tm - filemtime($downloads.'/'.$entry);
58 58
                     if ($ftime < 3600) {
59 59
                         continue;
60 60
                     }
61 61
                     if (isset($Cache[$entry])) {
62 62
                         continue;
63 63
                     }
64
-                    \core\common\Entity::rrmdir($downloads . '/' . $entry);
64
+                    \core\common\Entity::rrmdir($downloads.'/'.$entry);
65 65
                     $i = $i + 1;
66 66
                     print "$entry\n";
67 67
                 }
Please login to merge, or discard this patch.
web/copyright.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
  * @author Stefan Winter <[email protected]>
26 26
  * @package Core
27 27
  */
28
-require_once dirname(dirname(__FILE__)) . "/config/_config.php";
28
+require_once dirname(dirname(__FILE__))."/config/_config.php";
29 29
 
30 30
 $Gui = new \web\lib\user\Gui();
31 31
 // ... unless overwritten by direct GET/POST parameter in the request or a SESSION setting
Please login to merge, or discard this patch.
devices/xml/Device_XML.php 2 patches
Spacing   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@  discard block
 block discarded – undo
31 31
  */
32 32
 namespace devices\xml;
33 33
 use Exception;
34
-require_once dirname(__FILE__) . '/XML.inc.php';
34
+require_once dirname(__FILE__).'/XML.inc.php';
35 35
 
36 36
 /**
37 37
  * This class implements full functionality of the generic XML device
@@ -132,11 +132,11 @@  discard block
 block discarded – undo
132 132
         marshalObject($root, $eapIdp);
133 133
         $dom = dom_import_simplexml($root)->ownerDocument;
134 134
         //TODO schema validation makes sense so probably should be used
135
-        if ($dom->schemaValidate(ROOT . '/devices/xml/eap-metadata.xsd') === FALSE) {
135
+        if ($dom->schemaValidate(ROOT.'/devices/xml/eap-metadata.xsd') === FALSE) {
136 136
             throw new Exception("Schema validation failed for eap-metadata");
137 137
         }
138
-        file_put_contents($this->installerBasename . '.eap-config', $dom->saveXML());
139
-        return($this->installerBasename . '.eap-config');
138
+        file_put_contents($this->installerBasename.'.eap-config', $dom->saveXML());
139
+        return($this->installerBasename.'.eap-config');
140 140
     }
141 141
 
142 142
     private $AttributeNames = [
@@ -162,7 +162,7 @@  discard block
 block discarded – undo
162 162
             $this->loggerInstance->debug(4, "Missing class definition for $attrName\n");
163 163
             return([]);
164 164
         }
165
-        $className = "\devices\xml\\" . $this->AttributeNames[$attrName];
165
+        $className = "\devices\xml\\".$this->AttributeNames[$attrName];
166 166
         $objs = [];
167 167
         if ($this->langScope === 'global') {
168 168
             foreach ($attributeList['langs'] as $language => $value) {
@@ -200,7 +200,7 @@  discard block
 block discarded – undo
200 200
                 $displayname = new DisplayName();
201 201
                 if (isset($profileNameLangs)) {
202 202
                     $langOrC = isset($profileNameLangs[$language]) ? $profileNameLangs[$language] : $profileNameLangs['C'];
203
-                    $value .= ' - ' . $langOrC;
203
+                    $value .= ' - '.$langOrC;
204 204
                 }
205 205
                 $displayname->setValue($value);
206 206
                 $displayname->setAttributes(['lang' => $language]);
@@ -210,7 +210,7 @@  discard block
 block discarded – undo
210 210
             $displayname = new DisplayName();
211 211
             $value = $attr['general:instname'][0];
212 212
             if ($attr['internal:profile_count'][0] > 1) {
213
-                $value .= ' - ' . $attr['profile:name'][0];
213
+                $value .= ' - '.$attr['profile:name'][0];
214 214
             }
215 215
             $displayname->setValue($value);
216 216
             $objs[] = $displayname;
@@ -227,7 +227,7 @@  discard block
 block discarded – undo
227 227
         $attr = $this->attributes;
228 228
         if (isset($attr['general:logo_file'][0])) {
229 229
             $logoString = base64_encode($attr['general:logo_file'][0]);
230
-            $logoMime = 'image/' . $attr['internal:logo_file'][0]['mime'];
230
+            $logoMime = 'image/'.$attr['internal:logo_file'][0]['mime'];
231 231
             $providerlogo = new ProviderLogo();
232 232
             $providerlogo->setAttributes(['mime' => $logoMime, 'encoding' => 'base64']);
233 233
             $providerlogo->setValue($logoString);
@@ -327,7 +327,7 @@  discard block
 block discarded – undo
327 327
 
328 328
         if (isset($inner["METHOD"]) && $inner["METHOD"]) {
329 329
             $innerauthmethod = new InnerAuthenticationMethod();
330
-            $typeOfInner = "\devices\xml\\" . ($inner["EAP"] ? 'EAPMethod' : 'NonEAPAuthMethod');
330
+            $typeOfInner = "\devices\xml\\".($inner["EAP"] ? 'EAPMethod' : 'NonEAPAuthMethod');
331 331
             $eapmethod = new $typeOfInner();
332 332
             $eaptype = new Type();
333 333
             $eaptype->setValue($inner['METHOD']);
@@ -364,7 +364,7 @@  discard block
 block discarded – undo
364 364
         return($serversidecredential);
365 365
     }
366 366
     
367
-    private function setClientSideRealm ($clientsidecredential) {
367
+    private function setClientSideRealm($clientsidecredential) {
368 368
         $attr = $this->attributes;
369 369
         $realm = \core\common\Entity::getAttributeValue($attr, 'internal:realm', 0);
370 370
         if ($realm === NULL) {
Please login to merge, or discard this patch.
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -266,7 +266,7 @@  discard block
 block discarded – undo
266 266
         return $helpdesk;
267 267
     }
268 268
 
269
-   private function getCredentialApplicability() {
269
+    private function getCredentialApplicability() {
270 270
         $setWired = isset($this->attributes['media:wired'][0]) && 
271 271
             $this->attributes['media:wired'][0] == 'on' ? 1 : 0;  
272 272
         $ssids = $this->attributes['internal:SSID'];
@@ -393,7 +393,7 @@  discard block
 block discarded – undo
393 393
     }
394 394
     
395 395
     private function getAuthMethod($eap) {
396
- //       $attr = $this->attributes;
396
+    //       $attr = $this->attributes;
397 397
         $authmethod = new AuthenticationMethod();
398 398
         $eapParams = $this->getAuthenticationMethodParams($eap);
399 399
         $eaptype = new Type();
Please login to merge, or discard this patch.
web/index.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@
 block discarded – undo
25 25
  * @author Stefan Winter <[email protected]>
26 26
  * @package Core
27 27
  */
28
-require_once dirname(dirname(__FILE__)) . "/config/_config.php";
28
+require_once dirname(dirname(__FILE__))."/config/_config.php";
29 29
 
30 30
 $Gui = new \web\lib\user\Gui();
31 31
 // ... unless overwritten by direct GET/POST parameter in the request or a SESSION setting
Please login to merge, or discard this patch.
web/skins/modern/diag/diag.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -156,7 +156,7 @@
 block discarded – undo
156 156
                         echo "0\">";
157 157
                         echo _("This service is for authenticated admins only.") . '<br>';
158 158
                         echo "<a href=\"diag.php?admin=1\">" .
159
-                             _("eduroam® admin access is needed") . "</a>";
159
+                                _("eduroam® admin access is needed") . "</a>";
160 160
                     }
161 161
                 ?>
162 162
             </div> 
Please login to merge, or discard this patch.
Spacing   +68 added lines, -68 removed lines patch added patch discarded remove patch
@@ -46,9 +46,9 @@  discard block
 block discarded – undo
46 46
 $Gui->loggerInstance->debug(4, $operatingSystem);
47 47
 $uiElements = new web\lib\admin\UIElements();
48 48
 if ($operatingSystem) {
49
-    print "recognisedOS = '" . $operatingSystem['device'] . "';\n";
49
+    print "recognisedOS = '".$operatingSystem['device']."';\n";
50 50
 }
51
-require dirname(__DIR__) . '/user/js/cat_js.php';
51
+require dirname(__DIR__).'/user/js/cat_js.php';
52 52
 
53 53
 ?>
54 54
 </script>
@@ -60,7 +60,7 @@  discard block
 block discarded – undo
60 60
 <div id='wrap' style='background-image:url("<?php echo $Gui->skinObject->findResourceUrl("IMAGES", "beta.png"); ?>");'>
61 61
 <form id="cat_form" name="cat_form" accept-charset="UTF-8" action="<?php echo $_SERVER['SCRIPT_NAME']; ?>" method="POST">
62 62
 <?php
63
-require dirname(__DIR__) . '/diag/js/diag_js.php';
63
+require dirname(__DIR__).'/diag/js/diag_js.php';
64 64
 echo $divs->divHeading($visibility);
65 65
 $Gui->languageInstance->setTextDomain("diagnostics");
66 66
 ?>
@@ -78,12 +78,12 @@  discard block
 block discarded – undo
78 78
     </div>
79 79
     <div id="main_body">
80 80
         <div id="user_page">
81
-            <?php echo $divs->divPagetitle(_("Diagnostics site") . " (<span style='color:red'>beta</span>)", ""); ?>
81
+            <?php echo $divs->divPagetitle(_("Diagnostics site")." (<span style='color:red'>beta</span>)", ""); ?>
82 82
             <div id="user_info" style='padding-top: 10px;'>
83 83
             <div id='diagnostic_choice'>
84
-                <?php echo _("The diagnostics system will do its best to identify and resolve your problems!") . ' ' . _("Please help the system by answering the questions as precisely as possible.") . "<br/>" . _("Are you a") . ' '; ?>
85
-                <input type='radio' name='diagnostic_usertype' value='0'><?php echo _("end-user") . ' ' . _("or"); ?>   
86
-                <input type='radio' name='diagnostic_usertype' value='1' <?php if ($admin == 1) { echo " checked"; } ?> > <?php echo _("eduroam administrator") .'?'; ?>
84
+                <?php echo _("The diagnostics system will do its best to identify and resolve your problems!").' '._("Please help the system by answering the questions as precisely as possible.")."<br/>"._("Are you a").' '; ?>
85
+                <input type='radio' name='diagnostic_usertype' value='0'><?php echo _("end-user").' '._("or"); ?>   
86
+                <input type='radio' name='diagnostic_usertype' value='1' <?php if ($admin == 1) { echo " checked"; } ?> > <?php echo _("eduroam administrator").'?'; ?>
87 87
             </div>
88 88
             <div id='diagnostic_enduser' style='display: none;'>
89 89
                 <h2><?php echo _("Tools for End Users"); ?></h2>
@@ -93,24 +93,24 @@  discard block
 block discarded – undo
93 93
                 ?>
94 94
                 </p>
95 95
                 <?php
96
-                    echo '<div id="before_stage_1"><h3>' . _("The system needs some information on your home institution - issuer of your account") . '</h3>';
96
+                    echo '<div id="before_stage_1"><h3>'._("The system needs some information on your home institution - issuer of your account").'</h3>';
97 97
                     echo _("What is the realm part of your user account (the part behind the @ of 'your.username@<strong>realm.tld</strong>):");
98 98
                 ?>
99 99
                 <input type='text' name='user_realm' id='user_realm' value=''>
100 100
                 <?php
101
-                    echo '<div id="realm_by_select"><br/>' . _("alternatively") . '<br/>';
102
-                    echo _("You can select your home institution from the following list") . '<br/>';
101
+                    echo '<div id="realm_by_select"><br/>'._("alternatively").'<br/>';
102
+                    echo _("You can select your home institution from the following list").'<br/>';
103 103
                     echo '<div id="select_idp_country"><a href="" id="idp_countries_list">';    
104
-                    echo '<span id="realmselect">' . _("Click to select your country/region and organisation") . '</span></a></div>';
104
+                    echo '<span id="realmselect">'._("Click to select your country/region and organisation").'</span></a></div>';
105 105
                 ?>
106 106
                 <div id="select_idp_area" style="display:none;">
107 107
                 </div>
108 108
                 </div>
109 109
                 <div id="position_info">
110 110
                     <?php
111
-                        echo '<h3>' . _("Optionally, to improve tests, you can provide information on your current location") . '</h3>';
111
+                        echo '<h3>'._("Optionally, to improve tests, you can provide information on your current location").'</h3>';
112 112
                         echo '<div id="select_sp_country"><a href="" id="sp_countries_list">';    
113
-                        echo '<span id="spselect">' . _("Click to select a location in which you have an eduroam problem") . '</span></a></div>';
113
+                        echo '<span id="spselect">'._("Click to select a location in which you have an eduroam problem").'</span></a></div>';
114 114
                     ?>
115 115
                     <div id="select_sp_area" style="display:none;">
116 116
                     </div>
@@ -143,11 +143,11 @@  discard block
 block discarded – undo
143 143
                             echo 'none';
144 144
                         }
145 145
                         echo ";'>";
146
-                        echo '<h3>' . _("What is the nature of the problem?") . '</h3>';
147
-                        echo '<input type="radio" name="problem_type" value="0"' . (($sp==1)? ' checked' : '') . '>';
148
-                        echo _("I suspect a technical problem at a particular IdP") . '<br>';
146
+                        echo '<h3>'._("What is the nature of the problem?").'</h3>';
147
+                        echo '<input type="radio" name="problem_type" value="0"'.(($sp == 1) ? ' checked' : '').'>';
148
+                        echo _("I suspect a technical problem at a particular IdP").'<br>';
149 149
                         echo '<input type="radio" name="problem_type" value="1">';
150
-                        echo _("I want to report abuse of network resources by a roaming user") . '<br>';
150
+                        echo _("I want to report abuse of network resources by a roaming user").'<br>';
151 151
                         echo '<input type="radio" name="problem_type" value="2">';
152 152
                         echo _("I suspect a technical problem for one of my users at a particular SP");
153 153
                         echo "<div id='idp_contact_area'></div>";
@@ -156,9 +156,9 @@  discard block
 block discarded – undo
156 156
                         echo "</div>"; 
157 157
                     } else {
158 158
                         echo "0\">";
159
-                        echo _("This service is for authenticated admins only.") . '<br>';
160
-                        echo "<a href=\"diag.php?admin=1\">" .
161
-                             _("eduroam® admin access is needed") . "</a>";
159
+                        echo _("This service is for authenticated admins only.").'<br>';
160
+                        echo "<a href=\"diag.php?admin=1\">".
161
+                             _("eduroam® admin access is needed")."</a>";
162 162
                     }
163 163
                 ?>
164 164
             </div> 
@@ -234,7 +234,7 @@  discard block
 block discarded – undo
234 234
         return false;
235 235
     });
236 236
     $(document).on('change', '#idp_country' , function() {
237
-        var comment = <?php echo '"' . _("Fetching institutions list") . '..."'; ?>;  
237
+        var comment = <?php echo '"'._("Fetching institutions list").'..."'; ?>;  
238 238
         var id = $(this).attr('id');
239 239
         var k = id.indexOf('_');
240 240
         var type = id.substr(0,k);
@@ -252,7 +252,7 @@  discard block
 block discarded – undo
252 252
                         var shtml = '';
253 253
                         var select = '';
254 254
                         if (type !== 'asp') {
255
-                            shtml = <?php echo '"<td>' . _("Select institution:") . '</td><td>"'; ?>;
255
+                            shtml = <?php echo '"<td>'._("Select institution:").'</td><td>"'; ?>;
256 256
                         }
257 257
                         select = '<select id="' + type + '_inst" name="' + type + '_inst" style="margin-left:0px; width:400px;"><option value=""></option>';
258 258
                         for (var i in institutions) {
@@ -273,7 +273,7 @@  discard block
 block discarded – undo
273 273
                     } else {
274 274
                         if (data.status === 0) {
275 275
                             inProgress(0);
276
-                            var msg = <?php echo '"' . _("The database does not contain the information needed to help you in realm selection for this country. You have to provide the realm you are interested in.") . '"'; ?>;
276
+                            var msg = <?php echo '"'._("The database does not contain the information needed to help you in realm selection for this country. You have to provide the realm you are interested in.").'"'; ?>;
277 277
                             alert(msg);
278 278
                             $('#select_idp_country').show();
279 279
                             $('#select_idp_area').hide();
@@ -282,7 +282,7 @@  discard block
 block discarded – undo
282 282
                 },
283 283
                 error:function() {
284 284
                     inProgress(0);
285
-                    var msg = <?php echo '"' . _("Can not search in database. You have to provide the realm you are interested in.") . '"'; ?>;
285
+                    var msg = <?php echo '"'._("Can not search in database. You have to provide the realm you are interested in.").'"'; ?>;
286 286
                     alert(msg);
287 287
                     $('#select_idp_country').show();
288 288
                     $('#select_idp_area').hide();
@@ -298,9 +298,9 @@  discard block
 block discarded – undo
298 298
     });
299 299
     $(document).on('change', '#select_sp_problem' , function() {
300 300
         if ($('#select_sp_problem').val().substr(0,6) == 'abuse-') {
301
-            $('#realm_in_db_admin').text(<?php echo '"' . _("Check if this realm is registered") . '"'; ?>);
301
+            $('#realm_in_db_admin').text(<?php echo '"'._("Check if this realm is registered").'"'; ?>);
302 302
         } else {
303
-            $('#realm_in_db_admin').text(<?php echo '"' . _("Check this realm") . '"'; ?>);
303
+            $('#realm_in_db_admin').text(<?php echo '"'._("Check this realm").'"'; ?>);
304 304
         }
305 305
         $('#realm_in_db_admin').hide();
306 306
         $('#admin_realm').val('');
@@ -308,7 +308,7 @@  discard block
 block discarded – undo
308 308
         clear_sp_question();
309 309
     });
310 310
     $(document).on('change', '#sp_country, #asp_country' , function() {
311
-        var comment = <?php echo '"' . _("Fetching institutions list") . '..."'; ?>;  
311
+        var comment = <?php echo '"'._("Fetching institutions list").'..."'; ?>;  
312 312
         var id = $(this).attr('id');
313 313
         var k = id.indexOf('_');
314 314
         var type = id.substr(0,k);
@@ -326,7 +326,7 @@  discard block
 block discarded – undo
326 326
                         var shtml = '';
327 327
                         var select = '';
328 328
                         if (type !== 'asp') {
329
-                            shtml = <?php echo '"<td>' . _("Select institution:") . '</td><td>"'; ?>;
329
+                            shtml = <?php echo '"<td>'._("Select institution:").'</td><td>"'; ?>;
330 330
                         }
331 331
                         select = '<select id="' + type + '_inst" name="' + type + '_inst" style="margin-left:0px; width:400px;"><option value=""></option>';
332 332
                         for (var i in hotspots) {
@@ -349,7 +349,7 @@  discard block
 block discarded – undo
349 349
                             inProgress(0);
350 350
                             var select = '<select id="' + type + '_inst" name="' + type + '_inst" style="margin-left:0px; width:400px;"><option value="">';
351 351
                             var shtml = '<td></td><td>';
352
-                            select = select + <?php echo '"' . _("Other location") . '"'; ?> + '</option></select></td>';
352
+                            select = select + <?php echo '"'._("Other location").'"'; ?> + '</option></select></td>';
353 353
                             if (type !== 'asp') {
354 354
                                 $('#row_' + type + '_institution').html('');
355 355
                                 $('#row_' + type + '_institution').append(shtml + select);
@@ -383,7 +383,7 @@  discard block
 block discarded – undo
383 383
             $('#start_test_area').hide();
384 384
             return false;
385 385
         }
386
-        var comment = <?php echo '"' . _("Fetching realms list") . '..."'; ?>;
386
+        var comment = <?php echo '"'._("Fetching realms list").'..."'; ?>;
387 387
         inProgress(1, comment);
388 388
         $.ajax({
389 389
             url: "findRealm.php",
@@ -395,7 +395,7 @@  discard block
 block discarded – undo
395 395
                     var realms = data.realms;
396 396
                     var realmselect = '';
397 397
                     if (realms.length > 1) {
398
-                        realmselect = <?php echo '"<td>' . _("Check realm(s):") . '</td>"'; ?>;
398
+                        realmselect = <?php echo '"<td>'._("Check realm(s):").'</td>"'; ?>;
399 399
                         realmselect = realmselect + '<td>' + "<span style='margin-left: 10px'>";
400 400
                         for (var i in realms) {
401 401
                             realmselect = realmselect + '<input type="radio" name="realm" ';
@@ -407,7 +407,7 @@  discard block
 block discarded – undo
407 407
                         }
408 408
                         realmselect = realmselect + '</span></td>';
409 409
                     } else {
410
-                        realmselect = <?php echo '"<td>' . _("Realm:") . '</td>"'; ?>;
410
+                        realmselect = <?php echo '"<td>'._("Realm:").'</td>"'; ?>;
411 411
                         realmselect = realmselect + '<td>' + "<span style='margin-left: 10px'>";
412 412
                         realmselect = realmselect + realms[0] + '</span>';
413 413
                         realmselect = realmselect + '<input type="hidden" name="realm" value="' + realms[0] + '">';
@@ -459,7 +459,7 @@  discard block
 block discarded – undo
459 459
             clear_sp_question();
460 460
             t = 1;
461 461
         }
462
-        var comment = <?php echo '"' . _("Running realm tests") . '..."'; ?>;
462
+        var comment = <?php echo '"'._("Running realm tests").'..."'; ?>;
463 463
         inProgress(1, comment);
464 464
         /*waiting(comment);*/
465 465
         $.ajax({
@@ -518,7 +518,7 @@  discard block
 block discarded – undo
518 518
         testSociopath('', answer);
519 519
     });
520 520
     $('#realmtest').click(function(event){
521
-        var comment = <?php echo '"<br><br>' . _("Running realm tests") . '..."'; ?>;
521
+        var comment = <?php echo '"<br><br>'._("Running realm tests").'..."'; ?>;
522 522
         inProgress(1, comment);
523 523
         $('#start_test_area').hide();
524 524
         if ($('#select_sp_area').is(':hidden')) {
@@ -566,13 +566,13 @@  discard block
 block discarded – undo
566 566
                         reset_footer();
567 567
                         testSociopath(realm, 0);
568 568
                     } else {
569
-                        var title = <?php echo '"' . _("Diagnostics results for selected realms") . '"'; ?>;
570
-                        result = '<div class="padding"><h3>' + <?php echo '"' . _("An unknown problem occured") . '"'; ?>;
569
+                        var title = <?php echo '"'._("Diagnostics results for selected realms").'"'; ?>;
570
+                        result = '<div class="padding"><h3>' + <?php echo '"'._("An unknown problem occured").'"'; ?>;
571 571
                         result = result + '</h3>'
572 572
                         if (r.length == 1) {
573
-                            result = result + <?php echo '"' . _("This test includes checking of the following realm") . '"'; ?>;
573
+                            result = result + <?php echo '"'._("This test includes checking of the following realm").'"'; ?>;
574 574
                         } else {    
575
-                            result = result + <?php echo '"' . _("This test includes checking of the following realms") . '"'; ?>;
575
+                            result = result + <?php echo '"'._("This test includes checking of the following realms").'"'; ?>;
576 576
                         }
577 577
                         result = result + ': '
578 578
                         for (var i=0; i < r.length; i++) {
@@ -582,7 +582,7 @@  discard block
 block discarded – undo
582 582
                             result = result + r[i];
583 583
                         }
584 584
                         result = result + '.<br>';
585
-                        result = result + <?php echo '"' . _("You should report this to") . '"'; ?> + ' <a href="mailto:[email protected]">[email protected]</a>';
585
+                        result = result + <?php echo '"'._("You should report this to").'"'; ?> + ' <a href="mailto:[email protected]">[email protected]</a>';
586 586
                         result = result + '</div>';
587 587
                         $('#after_stage_1').hide();
588 588
                         $('#before_stage_1').show();
@@ -650,43 +650,43 @@  discard block
 block discarded – undo
650 650
             success:function(data) {
651 651
                 if (data.status === 1) {
652 652
                     var result = '';
653
-                    var title = <?php echo '"' . _("eduroam admin report submission") . '"'; ?>;
653
+                    var title = <?php echo '"'._("eduroam admin report submission").'"'; ?>;
654 654
                     result = '<div class="padding">';
655 655
                     if (type == 'idp_send') {
656
-                        result = result + '<h3>'+ <?php echo '"' . _("SP contacting IdP due to technical problems or abuse") . '"'; ?> + '</h3>';
656
+                        result = result + '<h3>'+ <?php echo '"'._("SP contacting IdP due to technical problems or abuse").'"'; ?> + '</h3>';
657 657
                         result = result + '<table>';
658
-                        result = result + '<tr><td>' + <?php echo '"' . _("Reason") . '"'; ?> + '</td><td>' + data.reason + '</td></tr>';
659
-                        result = result + '<tr><td>' + <?php echo '"' . _("Event's timestamp") . '"'; ?> + '</td><td>' + data.timestamp + '</td></tr>';
660
-                        result = result + '<tr><td>' + <?php echo '"' . _("Calling-Station-Id") . '"'; ?> + '</td><td>' + data.mac + '</td></tr>';
661
-                        result = result + '<tr><td>' + <?php echo '"' . _("Additional description") . '"'; ?> +'</td><td>' + data.freetext + '</td></tr>';
662
-                        result = result + '<tr><td>' + <?php echo '"' . _("An email to contact the reporter") . '"'; ?> + '</td><td>' + data.email + '</td></tr>';
663
-                        result = result + '<tr><td>' + <?php echo '"' . _("Test result") . '" '; ?> +'</td><td>';
658
+                        result = result + '<tr><td>' + <?php echo '"'._("Reason").'"'; ?> + '</td><td>' + data.reason + '</td></tr>';
659
+                        result = result + '<tr><td>' + <?php echo '"'._("Event's timestamp").'"'; ?> + '</td><td>' + data.timestamp + '</td></tr>';
660
+                        result = result + '<tr><td>' + <?php echo '"'._("Calling-Station-Id").'"'; ?> + '</td><td>' + data.mac + '</td></tr>';
661
+                        result = result + '<tr><td>' + <?php echo '"'._("Additional description").'"'; ?> +'</td><td>' + data.freetext + '</td></tr>';
662
+                        result = result + '<tr><td>' + <?php echo '"'._("An email to contact the reporter").'"'; ?> + '</td><td>' + data.email + '</td></tr>';
663
+                        result = result + '<tr><td>' + <?php echo '"'._("Test result").'" '; ?> +'</td><td>';
664 664
                         if (data.tests_result == 1) {
665
-                            result = result + <?php echo '"' . _("failure") . '"'; ?>;
665
+                            result = result + <?php echo '"'._("failure").'"'; ?>;
666 666
                         } else {
667
-                            result = result + <?php echo '"' . _("success") . '"'; ?>;
667
+                            result = result + <?php echo '"'._("success").'"'; ?>;
668 668
                         }
669 669
                         result = result + '</td></tr>';
670
-                        result = result + '<tr><td>' + <?php echo '"' . _("Test URL") . '" '; ?> +'</td><td><a href="' + data.testurl + '">' + data.testurl + '</a></td></tr>';
671
-                        result = result + '<tr><td>' + <?php echo '"' . _("Email to IdP administrators ") . '"'; ?> + ' ';
670
+                        result = result + '<tr><td>' + <?php echo '"'._("Test URL").'" '; ?> +'</td><td><a href="' + data.testurl + '">' + data.testurl + '</a></td></tr>';
671
+                        result = result + '<tr><td>' + <?php echo '"'._("Email to IdP administrators ").'"'; ?> + ' ';
672 672
                         if (data.emailsent == 1) {
673
-                            result = result + <?php echo '"' . _("send successfully") . '"'; ?>;
673
+                            result = result + <?php echo '"'._("send successfully").'"'; ?>;
674 674
                         } else {
675
-                            result = result + <?php echo '"' . _("not sent - failure while sending") . '"'; ?>;
675
+                            result = result + <?php echo '"'._("not sent - failure while sending").'"'; ?>;
676 676
                         }
677 677
                         result = result + '</td><td></td></tr>';
678 678
                     }
679 679
                     if (type == 'sp_send') {
680
-                        result = result + '<h3>'+ <?php echo '"' . _("IdP contacting SP due to technical problems or abuse") . '"'; ?> + '</h3>';
680
+                        result = result + '<h3>'+ <?php echo '"'._("IdP contacting SP due to technical problems or abuse").'"'; ?> + '</h3>';
681 681
                         result = result + '<table>';
682
-                        result = result + '<tr><td>' + <?php echo '"' . _("Reason") . '"'; ?> + '</td><td>' + data.reason + '</td></tr>';
683
-                        result = result + '<tr><td>' + <?php echo '"' . _("SP's Operator-Name") . '"'; ?> + '</td><td>' + data.opname + '</td></tr>';
684
-                        result = result + '<tr><td>' + <?php echo '"' . _("User's outer ID") . '"'; ?> + '</td><td>' + data.outerid + '</td></tr>';
685
-                        result = result + '<tr><td>' + <?php echo '"' . _("IdP email") . '"'; ?> + '</td><td>' + data.email + '</td></tr>';
686
-                        result = result + '<tr><td>' + <?php echo '"' . _("Event's timestamp") . '"'; ?> + '</td><td>' + data.timestamp + '</td></tr>';
687
-                        result = result + '<tr><td>' + <?php echo '"' . _("Calling-Station-Id") . '"'; ?> + '</td><td>' + data.mac + '</td></tr>';
688
-                        result = result + '<tr><td>' + <?php echo '"' . _("Additional description") . '"'; ?> +'</td><td>' + data.freetext + '</td></tr>';
689
-                        result = result + '<tr><td>' + <?php echo '"' . _("How to contact the user") . '"'; ?> +'</td><td>' + data.cdetails + '</td></tr>';
682
+                        result = result + '<tr><td>' + <?php echo '"'._("Reason").'"'; ?> + '</td><td>' + data.reason + '</td></tr>';
683
+                        result = result + '<tr><td>' + <?php echo '"'._("SP's Operator-Name").'"'; ?> + '</td><td>' + data.opname + '</td></tr>';
684
+                        result = result + '<tr><td>' + <?php echo '"'._("User's outer ID").'"'; ?> + '</td><td>' + data.outerid + '</td></tr>';
685
+                        result = result + '<tr><td>' + <?php echo '"'._("IdP email").'"'; ?> + '</td><td>' + data.email + '</td></tr>';
686
+                        result = result + '<tr><td>' + <?php echo '"'._("Event's timestamp").'"'; ?> + '</td><td>' + data.timestamp + '</td></tr>';
687
+                        result = result + '<tr><td>' + <?php echo '"'._("Calling-Station-Id").'"'; ?> + '</td><td>' + data.mac + '</td></tr>';
688
+                        result = result + '<tr><td>' + <?php echo '"'._("Additional description").'"'; ?> +'</td><td>' + data.freetext + '</td></tr>';
689
+                        result = result + '<tr><td>' + <?php echo '"'._("How to contact the user").'"'; ?> +'</td><td>' + data.cdetails + '</td></tr>';
690 690
                     }
691 691
                     result = result + '</div>';
692 692
                     showInfo(result, title);
@@ -711,7 +711,7 @@  discard block
 block discarded – undo
711 711
                         $(this).removeClass('visible_row').addClass('hidden_row');
712 712
                     }
713 713
                 });
714
-                $('#admin_realm').attr('title', <?php echo '"' . _("Wrong format of realm") . '"'; ?>);
714
+                $('#admin_realm').attr('title', <?php echo '"'._("Wrong format of realm").'"'; ?>);
715 715
             } else {
716 716
                 $('#admin_realm').removeClass('error_input');
717 717
                 $('#admin_realm').attr('title', '');
@@ -721,7 +721,7 @@  discard block
 block discarded – undo
721 721
     $(document).on('keyup change', '#email' , function() {
722 722
         if ($(this).val().length == 0 || !isEmail($(this).val())) {
723 723
             $('#email').addClass('error_input');
724
-            $('#email').attr('title', <?php echo '"' . _("Wrong format of email") . '"'; ?>);
724
+            $('#email').attr('title', <?php echo '"'._("Wrong format of email").'"'; ?>);
725 725
         } else {
726 726
             $('#email').removeClass('error_input');
727 727
             $('#email').attr('title', '');
@@ -734,7 +734,7 @@  discard block
 block discarded – undo
734 734
         if ($('#mac').val().length > 0) {
735 735
             if ($('#mac').val().length != 17) {
736 736
                 $('#mac').addClass('error_input');
737
-                $('#mac').attr('title', <?php echo '"' . _("MAC address is incomplete") . '"'; ?>);
737
+                $('#mac').attr('title', <?php echo '"'._("MAC address is incomplete").'"'; ?>);
738 738
             } else {
739 739
                 $('#mac').removeClass('error_input'); 
740 740
                 $('#mac').attr('title', '');
@@ -743,7 +743,7 @@  discard block
 block discarded – undo
743 743
         if ($(this).attr('id') == 'email' &&  $(this).val().length > 0) {
744 744
             if (!isEmail($(this).val())) {
745 745
                 $('#email').addClass('error_input');
746
-                $('#email').attr('title', <?php echo '"' . _("Wrong format of email") . '"'; ?>);
746
+                $('#email').attr('title', <?php echo '"'._("Wrong format of email").'"'; ?>);
747 747
             } else {
748 748
                 $('#email').removeClass('error_input');
749 749
                 $('#email').attr('title', '');
@@ -752,7 +752,7 @@  discard block
 block discarded – undo
752 752
         if ($(this).attr('id') == 'outer_id' &&  $(this).val().length > 0) {
753 753
             if (!isEmail($(this).val(), true)) {
754 754
                 $('#outer_id').addClass('error_input');
755
-                $('#outer_id').attr('title', <?php echo '"' . _("Wrong format of outer ID") . '"'; ?>);
755
+                $('#outer_id').attr('title', <?php echo '"'._("Wrong format of outer ID").'"'; ?>);
756 756
             } else {
757 757
                 $('#outer_id').removeClass('error_input');
758 758
                 $('#outer_id').attr('title', '');
@@ -761,7 +761,7 @@  discard block
 block discarded – undo
761 761
         if ($(this).attr('id') == 'opname' && $('#opname').val().length > 0) {
762 762
             if (!isOperatorName($(this).val())) {
763 763
                 $('#opname').addClass('error_input');
764
-                $('#opname').attr('title', <?php echo '"' . _("Wrong string given as OperatorName") . '"'; ?>);
764
+                $('#opname').attr('title', <?php echo '"'._("Wrong string given as OperatorName").'"'; ?>);
765 765
                 $('#spmanually').show();
766 766
             } else {
767 767
                 $('#opname').removeClass('error_input');
Please login to merge, or discard this patch.
devices/linux/DeviceLinux.php 3 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -211,7 +211,7 @@
 block discarded – undo
211 211
         }
212 212
 
213 213
         if (!empty($this->attributes['internal:realm'][0])) {
214
-           $config['user_realm'] = $this->attributes['internal:realm'][0];
214
+            $config['user_realm'] = $this->attributes['internal:realm'][0];
215 215
         }
216 216
         
217 217
         if(!empty($this->attributes['internal:hint_userinput_suffix'][0]) && $this->attributes['internal:hint_userinput_suffix'][0] == 1) {
Please login to merge, or discard this patch.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -201,8 +201,7 @@
 block discarded – undo
201 201
             
202 202
         if ($this->selectedEap == \core\common\EAP::EAPTYPE_TLS && isset($this->attributes['eap-specific:tls_use_other_id']) && $this->attributes['eap-specific:tls_use_other_id'][0] == 'on') {
203 203
             $configRaw['use_other_tls_id'] = "True";
204
-        }
205
-        else {
204
+        } else {
206 205
             $configRaw['use_other_tls_id'] = "False";
207 206
         }
208 207
 
Please login to merge, or discard this patch.
Spacing   +21 added lines, -21 removed lines patch added patch discarded remove patch
@@ -55,9 +55,9 @@  discard block
 block discarded – undo
55 55
      *
56 56
      */
57 57
     public function writeInstaller() {
58
-        $installerPath = $this->installerBasename . ".py";
58
+        $installerPath = $this->installerBasename.".py";
59 59
         $this->copyFile("main.py", $installerPath);
60
-        $installer = fopen($installerPath,"a");
60
+        $installer = fopen($installerPath, "a");
61 61
         if ($installer === FALSE) {
62 62
             throw new Exception("Unable to open installer file for writing!");
63 63
         }
@@ -84,9 +84,9 @@  discard block
 block discarded – undo
84 84
         $out .= "<p>";
85 85
         if ($ssidCount > 1) {
86 86
             if ($ssidCount > 2) {
87
-                $out .= sprintf(_("In addition to <strong>%s</strong> the installer will also configure access to the following networks:"), implode(', ', \config\ConfAssistant::CONSORTIUM['ssid'])) . " ";
87
+                $out .= sprintf(_("In addition to <strong>%s</strong> the installer will also configure access to the following networks:"), implode(', ', \config\ConfAssistant::CONSORTIUM['ssid']))." ";
88 88
             } else {
89
-                $out .= sprintf(_("In addition to <strong>%s</strong> the installer will also configure access to:"), implode(', ', \config\ConfAssistant::CONSORTIUM['ssid'])) . " ";
89
+                $out .= sprintf(_("In addition to <strong>%s</strong> the installer will also configure access to:"), implode(', ', \config\ConfAssistant::CONSORTIUM['ssid']))." ";
90 90
             }
91 91
             $iterator = 0;
92 92
             foreach ($this->attributes['internal:SSID'] as $ssid => $v) {
@@ -124,8 +124,8 @@  discard block
 block discarded – undo
124 124
      * @return void
125 125
      */
126 126
     private function writeConfigLine($file, $prefix, $name, $text) {
127
-        $out = $prefix . $name . ' = "' . $text;
128
-        fwrite($file, wordwrap($out, 70, " \" \\\n    \"") . "\n");
127
+        $out = $prefix.$name.' = "'.$text;
128
+        fwrite($file, wordwrap($out, 70, " \" \\\n    \"")."\n");
129 129
     }
130 130
     
131 131
     /**
@@ -164,7 +164,7 @@  discard block
 block discarded – undo
164 164
         'user_cert_missing' => _("personal certificate file not found"),
165 165
         ];
166 166
         foreach ($messages as $name => $value) {
167
-            $this->writeConfigLine($file, 'Messages.', $name, $value . '"');
167
+            $this->writeConfigLine($file, 'Messages.', $name, $value.'"');
168 168
         }
169 169
         \core\common\Entity::outOfThePotatoes();
170 170
     }
@@ -208,39 +208,39 @@  discard block
 block discarded – undo
208 208
         }
209 209
 
210 210
         if ($outerId !== NULL) {
211
-            $configRaw['anonymous_identity'] = '"' . $outerId . '"';
211
+            $configRaw['anonymous_identity'] = '"'.$outerId.'"';
212 212
         }
213 213
 
214 214
         if (!empty($this->attributes['internal:realm'][0])) {
215 215
            $config['user_realm'] = $this->attributes['internal:realm'][0];
216 216
         }
217 217
         
218
-        if(!empty($this->attributes['internal:hint_userinput_suffix'][0]) && $this->attributes['internal:hint_userinput_suffix'][0] == 1) {
218
+        if (!empty($this->attributes['internal:hint_userinput_suffix'][0]) && $this->attributes['internal:hint_userinput_suffix'][0] == 1) {
219 219
             $configRaw['hint_user_input'] = "True";
220 220
         }
221 221
         
222
-        if(!empty($this->attributes['internal:verify_userinput_suffix'][0]) && $this->attributes['internal:verify_userinput_suffix'][0] == 1) {
222
+        if (!empty($this->attributes['internal:verify_userinput_suffix'][0]) && $this->attributes['internal:verify_userinput_suffix'][0] == 1) {
223 223
             $configRaw['verify_user_realm_input'] = "True";
224 224
         }
225 225
         
226 226
         foreach ($config as $name => $value) {
227
-            $this->writeConfigLine($file, 'Config.', $name, $value . '"');
227
+            $this->writeConfigLine($file, 'Config.', $name, $value.'"');
228 228
         }
229 229
         
230 230
         foreach ($configRaw as $name => $value) {
231
-            fwrite($file, 'Config.' . $name . ' = ' . $value . "\n");
231
+            fwrite($file, 'Config.'.$name.' = '.$value."\n");
232 232
         }
233 233
         
234 234
         if ($tou === '') {
235
-            fwrite($file, 'Config.tou = ""' . "\n");
235
+            fwrite($file, 'Config.tou = ""'."\n");
236 236
         } else {
237
-            fwrite($file, 'Config.tou = """' . $tou . '"""' . "\n");
237
+            fwrite($file, 'Config.tou = """'.$tou.'"""'."\n");
238 238
         }
239 239
         
240
-        fwrite($file, 'Config.CA = """' . $this->mkCAfile() . '"""' . "\n");
240
+        fwrite($file, 'Config.CA = """'.$this->mkCAfile().'"""'."\n");
241 241
         $sbUserFile = $this->mkSbUserFile();
242 242
         if ($sbUserFile !== '') {
243
-            fwrite($file, 'Config.sb_user_file = """' . $sbUserFile . '"""' . "\n");
243
+            fwrite($file, 'Config.sb_user_file = """'.$sbUserFile.'"""'."\n");
244 244
         }
245 245
     }
246 246
 
@@ -292,7 +292,7 @@  discard block
 block discarded – undo
292 292
             }
293 293
             $out .= "'DNS:$oneServer'";
294 294
         }
295
-        return "[" . $out. "]";
295
+        return "[".$out."]";
296 296
     }
297 297
 
298 298
     /**
@@ -306,7 +306,7 @@  discard block
 block discarded – undo
306 306
         foreach ($ssids as $ssid => $cipher) {
307 307
             $outArray[] = "'$ssid'";
308 308
         }
309
-        return '[' . implode(', ', $outArray) . ']';
309
+        return '['.implode(', ', $outArray).']';
310 310
     }
311 311
     
312 312
     /**
@@ -322,7 +322,7 @@  discard block
 block discarded – undo
322 322
                 $outArray[] = "'$ssid'";
323 323
             }
324 324
         }
325
-        return '[' . implode(', ', $outArray) . ']';
325
+        return '['.implode(', ', $outArray).']';
326 326
     }
327 327
     
328 328
     /**
@@ -330,7 +330,7 @@  discard block
 block discarded – undo
330 330
      * 
331 331
      * @return string
332 332
      */
333
-    private function mkCAfile(){
333
+    private function mkCAfile() {
334 334
         $out = '';
335 335
         $cAlist = $this->attributes['internal:CAs'][0];
336 336
         foreach ($cAlist as $oneCa) {
@@ -346,7 +346,7 @@  discard block
 block discarded – undo
346 346
      */
347 347
     private function mkIntro() {
348 348
         \core\common\Entity::intoThePotatoes();
349
-        $out = _("This installer has been prepared for {0}") . '\n\n' . _("More information and comments:") . '\n\nEMAIL: {1}\nWWW: {2}\n\n' .
349
+        $out = _("This installer has been prepared for {0}").'\n\n'._("More information and comments:").'\n\nEMAIL: {1}\nWWW: {2}\n\n'.
350 350
             _("Installer created with software from the GEANT project.");
351 351
         \core\common\Entity::outOfThePotatoes();
352 352
         return $out;
Please login to merge, or discard this patch.