Passed
Push — vko_msi_refactor ( 225587 )
by Vitalii
11:56
created
html/inc/team_types.inc 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
 
38 38
 function team_type_name($num) {
39 39
     global $team_types;
40
-    if ($num>0 && $num<count($team_types)) {
40
+    if ($num > 0 && $num < count($team_types)) {
41 41
         return $team_types[$num];
42 42
     }
43 43
     return "None";
@@ -53,13 +53,13 @@  discard block
 block discarded – undo
53 53
 
54 54
 function team_type_num($name) {
55 55
     global $team_types;
56
-    for ($i=0; $i<sizeof($team_types); $i++) {
56
+    for ($i = 0; $i < sizeof($team_types); $i++) {
57 57
         if ($name == $team_types[$i]) return $i;
58 58
     }
59 59
     return 0;
60 60
 }
61 61
 
62
-function team_type_select($selected_type, $allow_none=false){
62
+function team_type_select($selected_type, $allow_none = false) {
63 63
     global $team_types;
64 64
 
65 65
     $types = $team_types;
Please login to merge, or discard this patch.
html/inc/ReCaptcha/RequestMethod/SocketPost.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -88,18 +88,18 @@
 block discarded – undo
88 88
         $errno = 0;
89 89
         $errstr = '';
90 90
 
91
-        if (false === $this->socket->fsockopen('ssl://' . self::RECAPTCHA_HOST, 443, $errno, $errstr, 30)) {
91
+        if (false === $this->socket->fsockopen('ssl://'.self::RECAPTCHA_HOST, 443, $errno, $errstr, 30)) {
92 92
             return self::BAD_REQUEST;
93 93
         }
94 94
 
95 95
         $content = $params->toQueryString();
96 96
 
97
-        $request = "POST " . self::SITE_VERIFY_PATH . " HTTP/1.1\r\n";
98
-        $request .= "Host: " . self::RECAPTCHA_HOST . "\r\n";
97
+        $request = "POST ".self::SITE_VERIFY_PATH." HTTP/1.1\r\n";
98
+        $request .= "Host: ".self::RECAPTCHA_HOST."\r\n";
99 99
         $request .= "Content-Type: application/x-www-form-urlencoded\r\n";
100
-        $request .= "Content-length: " . strlen($content) . "\r\n";
100
+        $request .= "Content-length: ".strlen($content)."\r\n";
101 101
         $request .= "Connection: close\r\n\r\n";
102
-        $request .= $content . "\r\n\r\n";
102
+        $request .= $content."\r\n\r\n";
103 103
 
104 104
         $this->socket->fwrite($request);
105 105
         $response = '';
Please login to merge, or discard this patch.
html/inc/friend.inc 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
 }
51 51
 
52 52
 function send_friend_request_email($src_user, $dest_user, $msg) {
53
-    $message  = "
53
+    $message = "
54 54
 $src_user->name has added you as a friend at ".PROJECT.".
55 55
 ";
56 56
     if (strlen($msg)) {
@@ -72,7 +72,7 @@  discard block
 block discarded – undo
72 72
 }
73 73
 
74 74
 function send_friend_accept_email($dest_user, $src_user, $msg) {
75
-    $message  = "
75
+    $message = "
76 76
 $dest_user->name has confirmed you as a friend at ".PROJECT.".
77 77
 ";
78 78
     if (strlen($msg)) {
Please login to merge, or discard this patch.
html/inc/page_translate.inc 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@  discard block
 block discarded – undo
20 20
 // Some of this should be merged with translation.inc
21 21
 
22 22
 function get_lang_list() {
23
-    if (isset($_COOKIE['lang'])){
23
+    if (isset($_COOKIE['lang'])) {
24 24
         $language_string = $_COOKIE['lang'].",";
25 25
     } else {
26 26
         $language_string = '';
@@ -28,28 +28,28 @@  discard block
 block discarded – undo
28 28
     if (isset($_SERVER["HTTP_ACCEPT_LANGUAGE"])) {
29 29
         $language_string .= strtolower($_SERVER["HTTP_ACCEPT_LANGUAGE"]);
30 30
     }
31
-    $client_languages = explode(",",$language_string);
31
+    $client_languages = explode(",", $language_string);
32 32
 
33 33
     $lang_list = array();
34
-    for ($i=0; $i<sizeof($client_languages); $i++) {
35
-        if ((strlen($client_languages[$i])>2)
36
-            && (substr($client_languages[$i],2,1)=="_" || substr($client_languages[$i],2,1)=="-"))
34
+    for ($i = 0; $i < sizeof($client_languages); $i++) {
35
+        if ((strlen($client_languages[$i]) > 2)
36
+            && (substr($client_languages[$i], 2, 1) == "_" || substr($client_languages[$i], 2, 1) == "-"))
37 37
         {
38 38
             // If this is defined as primary-secondary, represent it as xx_YY
39 39
             //
40 40
             $language = substr(
41
-                $client_languages[$i],0,2)."_".strtoupper(substr($client_languages[$i],3,2)
41
+                $client_languages[$i], 0, 2)."_".strtoupper(substr($client_languages[$i], 3, 2)
42 42
             );
43 43
             $lang_list[] = $language;
44 44
 
45 45
             // And also check for the primary language
46 46
             //
47
-            $language = substr($client_languages[$i],0,2);
47
+            $language = substr($client_languages[$i], 0, 2);
48 48
             $lang_list[] = $language;
49 49
         } else {
50 50
             // else just use xx
51 51
             //
52
-            $language = substr($client_languages[$i],0,2);
52
+            $language = substr($client_languages[$i], 0, 2);
53 53
             $lang_list[] = $language;
54 54
         }
55 55
     }
Please login to merge, or discard this patch.
html/inc/notify.inc 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -46,7 +46,7 @@
 block discarded – undo
46 46
         return;
47 47
     }
48 48
 
49
-    $news_date=gmdate('D, d M Y H:i:s',$notify->create_time) . ' GMT';
49
+    $news_date = gmdate('D, d M Y H:i:s', $notify->create_time).' GMT';
50 50
     echo "<item>
51 51
         <title><![CDATA[$title]]></title>
52 52
         <guid>".url_base()."_notify_$notify->id</guid>
Please login to merge, or discard this patch.
html/inc/akismet.inc 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
     $master_url_enc = urlencode($master_url);
28 28
     $response = akismet_request("key=$key&blog=$master_url_enc", "rest.akismet.com", "/1.1/verify-key");
29
-    if ("valid" == $response[1] ) {
29
+    if ("valid" == $response[1]) {
30 30
         $post = urlencode($post);
31 31
         $ip = urlencode($_SERVER['REMOTE_ADDR']);
32 32
         $referrer = urlencode($_SERVER['HTTP_REFERER']);
@@ -56,15 +56,15 @@  discard block
 block discarded – undo
56 56
     $http_request  = "POST $path HTTP/1.0\r\n";
57 57
     $http_request .= "Host: $host\r\n";
58 58
     $http_request .= "Content-Type: application/x-www-form-urlencoded; charset=utf-8\r\n";
59
-    $http_request .= "Content-Length: " . strlen($request) . "\r\n";
59
+    $http_request .= "Content-Length: ".strlen($request)."\r\n";
60 60
     $http_request .= "User-Agent: BOINC | Akismet 1.1\r\n";
61 61
     $http_request .= "\r\n";
62 62
     $http_request .= $request;
63 63
 
64 64
     $response = '';
65
-    if( false !== ( $fs = @fsockopen($host, $port, $errno, $errstr, 3) ) ) {
65
+    if (false !== ($fs = @fsockopen($host, $port, $errno, $errstr, 3))) {
66 66
         fwrite($fs, $http_request);
67
-        while ( !feof($fs) )
67
+        while (!feof($fs))
68 68
             $response .= fgets($fs, 1160); // One TCP-IP packet
69 69
         fclose($fs);
70 70
         $response = explode("\r\n\r\n", $response, 2);
Please login to merge, or discard this patch.
html/ops/failure_result_summary_by_host.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -197,5 +197,5 @@
 block discarded – undo
197 197
 
198 198
 admin_page_tail();
199 199
 
200
-$cvs_version_tracker[]="\$Id$";  //Generated automatically - do not edit
200
+$cvs_version_tracker[] = "\$Id$"; //Generated automatically - do not edit
201 201
 ?>
Please login to merge, or discard this patch.
html/ops/failure_result_summary_by_platform.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -197,5 +197,5 @@
 block discarded – undo
197 197
 
198 198
 admin_page_tail();
199 199
 
200
-$cvs_version_tracker[]="\$Id$";  //Generated automatically - do not edit
200
+$cvs_version_tracker[] = "\$Id$"; //Generated automatically - do not edit
201 201
 ?>
Please login to merge, or discard this patch.
html/user/forum_help_desk.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -148,6 +148,6 @@
 block discarded – undo
148 148
 
149 149
 page_tail();
150 150
 
151
-$cvs_version_tracker[]="\$Id$";  //Generated automatically - do not edit
151
+$cvs_version_tracker[] = "\$Id$"; //Generated automatically - do not edit
152 152
 
153 153
 ?>
Please login to merge, or discard this patch.