Passed
Push — master ( 466034...d09326 )
by Tomasz
04:05
created
web/basic.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,4 +32,4 @@
 block discarded – undo
32 32
 
33 33
 
34 34
 // and now, serve actual data
35
-include("skins/".$skinObject->skin."/basic.php");
35
+include("skins/" . $skinObject->skin . "/basic.php");
Please login to merge, or discard this patch.
web/skins/classic/basic.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -141,7 +141,7 @@  discard block
 block discarded – undo
141 141
     public function listIdPs() {
142 142
         $instList = $this->orderIdentityProviders($this->country->tld);
143 143
         $out = '';
144
-        $out .= sprintf(_("Select your %s"), $this->nomenclature_inst );
144
+        $out .= sprintf(_("Select your %s"), $this->nomenclature_inst);
145 145
         $out .= '<select name="idp" onchange="submit_form(this)">';
146 146
         if (!empty($instList)) {
147 147
             if (!isset($this->idp)) {
@@ -235,7 +235,7 @@  discard block
 block discarded – undo
235 235
                 }
236 236
             }
237 237
             $out .= '>' . $disp . '</option>';
238
-            $deviceRedirects .= 'redirects[' . $iterator . '] = ' . ( $oneDevice['redirect'] ? 1 : 0 ) . ';';
238
+            $deviceRedirects .= 'redirects[' . $iterator . '] = ' . ($oneDevice['redirect'] ? 1 : 0) . ';';
239 239
             $iterator++;
240 240
         }
241 241
         $out .= '</select>';
@@ -278,9 +278,9 @@  discard block
 block discarded – undo
278 278
         }
279 279
         if ($out !== '') {
280 280
             $out1 .= '<div class="user_info">';
281
-            $out1 .=  sprintf(_("If you encounter problems you should ask for help at your %s"), $this->nomenclature_inst);
282
-            $out1 .=  $out;
283
-            $out1 .=  "</div>\n";
281
+            $out1 .= sprintf(_("If you encounter problems you should ask for help at your %s"), $this->nomenclature_inst);
282
+            $out1 .= $out;
283
+            $out1 .= "</div>\n";
284 284
         }
285 285
         return($out1);
286 286
     }
@@ -441,7 +441,7 @@  discard block
 block discarded – undo
441 441
         </script>
442 442
     </head>
443 443
     <body style="">
444
-        <?php print '<div id="motd">' . ( isset(CONFIG['APPEARANCE']['MOTD']) ? CONFIG['APPEARANCE']['MOTD'] : '&nbsp' ) . '</div>'; ?>
444
+        <?php print '<div id="motd">' . (isset(CONFIG['APPEARANCE']['MOTD']) ? CONFIG['APPEARANCE']['MOTD'] : '&nbsp') . '</div>'; ?>
445 445
         <form name="my_form" method="POST" action="<?php echo $_SERVER['SCRIPT_NAME'] ?>" accept-charset='UTF-8'>
446 446
             <img src="<?php echo $skinObject->findResourceUrl("IMAGES", "consortium_logo.png"); ?>" style="width: 20%; padding-right:20px; padding-top:0px; float:right" alt="logo" />
447 447
             <?php
Please login to merge, or discard this patch.