Passed
Push — dpa_docker_wrapper12 ( e18bd7 )
by David
08:59
created
html/ops/clean_cache.php 3 patches
Indentation   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -24,17 +24,17 @@
 block discarded – undo
24 24
 set_time_limit(0);
25 25
 
26 26
 function cache_check_diskspace2(){
27
-   $too_old = 86400;
28
-   while (1) {
29
-       $f = disk_free_space("../cache");
30
-       $u = disk_usage("../cache");
31
-       echo "free: $f used: $u\n";
32
-       if ($f > MIN_FREE_SPACE && $u < MAX_CACHE_USAGE) {
33
-           break;
34
-       }
35
-       clean_cache($too_old, "../cache");
36
-       $too_old/=2;
37
-   }
27
+    $too_old = 86400;
28
+    while (1) {
29
+        $f = disk_free_space("../cache");
30
+        $u = disk_usage("../cache");
31
+        echo "free: $f used: $u\n";
32
+        if ($f > MIN_FREE_SPACE && $u < MAX_CACHE_USAGE) {
33
+            break;
34
+        }
35
+        clean_cache($too_old, "../cache");
36
+        $too_old/=2;
37
+    }
38 38
 }
39 39
 
40 40
 cache_check_diskspace2();
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
23 23
 
24 24
 set_time_limit(0);
25 25
 
26
-function cache_check_diskspace2(){
26
+function cache_check_diskspace2() {
27 27
    $too_old = 86400;
28 28
    while (1) {
29 29
        $f = disk_free_space("../cache");
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
            break;
34 34
        }
35 35
        clean_cache($too_old, "../cache");
36
-       $too_old/=2;
36
+       $too_old /= 2;
37 37
    }
38 38
 }
39 39
 
Please login to merge, or discard this patch.
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@
 block discarded – undo
23 23
 
24 24
 set_time_limit(0);
25 25
 
26
-function cache_check_diskspace2(){
26
+function cache_check_diskspace2() {
27 27
    $too_old = 86400;
28 28
    while (1) {
29 29
        $f = disk_free_space("../cache");
Please login to merge, or discard this patch.
html/ops/cancel_workunits_action.php 1 patch
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -38,30 +38,30 @@  discard block
 block discarded – undo
38 38
 if ($cancel && ($cancel == 1)) {
39 39
     if ($WU) {
40 40
         foreach ($WU as $key => $value) {
41
-            if($WUs != "") {
42
-                $WUs = $WUs . ",";
41
+            if ($WUs != "") {
42
+                $WUs = $WUs.",";
43 43
             }
44
-            $WUs = $WUs . $value;
44
+            $WUs = $WUs.$value;
45 45
         }
46 46
     }
47 47
 }
48 48
 
49 49
 // cancel WUs (if not in rops)
50 50
 //
51
-if($WUs != "") {
51
+if ($WUs != "") {
52 52
     echo "<!--- WUs to cancel: $WUs --->\n";
53 53
     if (!in_rops()) {
54
-        cancel_wus_where("id IN (" . $WUs . ")");
54
+        cancel_wus_where("id IN (".$WUs.")");
55 55
     }
56 56
 }
57 57
 
58 58
 if ($back) {
59 59
     if ($back == "errorwus") {
60 60
         $args = "?refresh_cache=1";
61
-        if ($hide_canceled && $hide_canceled=="on") {
61
+        if ($hide_canceled && $hide_canceled == "on") {
62 62
             $args .= "&hide_canceled=on";
63 63
         }
64
-        if ($hide_dlerr && $hide_dlerr=="on") {
64
+        if ($hide_dlerr && $hide_dlerr == "on") {
65 65
             $args .= "&hide_dlerr=on";
66 66
         }
67 67
         if ($appid) {
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
         echo "<p><a href=\"errorwus.php$args\">Return to All-error Workunits page</a> (refreshes the cache)</p>";
71 71
     } else if ($back == "cancelwus") {
72 72
         if ($clause) {
73
-            $clause=urlencode($clause);
73
+            $clause = urlencode($clause);
74 74
             echo "<p><a href=\"cancel_workunits.php?limit=$limit&uclause=$clause\">";
75 75
             echo "Cancel next (max $limit) Workunits</a></p>";
76 76
         }
Please login to merge, or discard this patch.
html/ops/revalidate.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
21 21
 // and you want to rerun it on some jobs
22 22
 // (e.g. to grant credit to instances previously marked as invalid)
23 23
 
24
-ini_set ("memory_limit", "2G");
24
+ini_set("memory_limit", "2G");
25 25
 
26 26
 require_once("../inc/util_ops.inc");
27 27
 
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
     $nresults = 0;
53 53
 
54 54
     $wus = BoincWorkunit::enum($clause);
55
-    foreach($wus as $wu) {
55
+    foreach ($wus as $wu) {
56 56
         $results = BoincResult::enum("workunitid=$wu->id");
57 57
         $n = 0;
58 58
         foreach ($results as $result) {
Please login to merge, or discard this patch.
html/ops/update_profile_pages.php 3 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -200,7 +200,7 @@
 block discarded – undo
200 200
         for ($row = 0; $row < $height; $row++) {
201 201
             echo "<tr>";
202 202
             for ($col = 0; $col < $width; $col++) {
203
-	            if ($count < $numIds) {
203
+                if ($count < $numIds) {
204 204
                     echo "<td class=\"bordered\" align=\"center\">
205 205
                         <a href=\"".secure_url_base()."view_profile.php?userid=".$userIds[$count]."\"><img src=\"".secure_url_base().IMAGE_URL.$userIds[$count]."_sm.jpg\"></a>
206 206
                     </td>";
Please login to merge, or discard this patch.
Spacing   +15 added lines, -15 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
 
40 40
 // TODO: convert to new DB interface
41 41
 
42
-$alphabet = array('A','B','C','D','E','F','G','H','I','J','K','L','M','N','O','P','Q','R','S','T','U','V','W','X','Y','Z','0','1','2','3','4','5','6','7','8','9');
42
+$alphabet = array('A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 'Y', 'Z', '0', '1', '2', '3', '4', '5', '6', '7', '8', '9');
43 43
 
44 44
 
45 45
 // Builds a summary table of user profiles.
@@ -53,7 +53,7 @@  discard block
 block discarded – undo
53 53
 function show_user_table($members, $offset, $numToDisplay, $cols) {
54 54
     start_table();
55 55
 
56
-    $rows = ceil($numToDisplay / $cols);
56
+    $rows = ceil($numToDisplay/$cols);
57 57
     $count = $offset;
58 58
     $numMembers = count($members);
59 59
 
@@ -151,7 +151,7 @@  discard block
 block discarded – undo
151 151
     // Build an array of IDs of all users with pictures in their profiles.
152 152
     $userIds = array();
153 153
     $numIds = 0;
154
-    foreach($profiles as $profile) {
154
+    foreach ($profiles as $profile) {
155 155
         $user = BoincUser::lookup_id($profile->userid);
156 156
         if (!$user) continue; // maybe we should delete the profile if user is non-existent anymore?
157 157
         if ($user->name) {
@@ -171,7 +171,7 @@  discard block
 block discarded – undo
171 171
 //        shuffle($userIds);
172 172
 //    }
173 173
 
174
-    $numPages = ceil(count($userIds)/($width * $height));
174
+    $numPages = ceil(count($userIds)/($width*$height));
175 175
 
176 176
     // Make sure that a page is generated even when no profiles with pictures
177 177
     // exist in order to avoid 404 errors from the profile_menu page.
@@ -185,7 +185,7 @@  discard block
 block discarded – undo
185 185
     $count = 0;
186 186
 
187 187
     for ($page = 1; $page <= $numPages; $page++) {
188
-        $filename = PROFILE_PATH . "user_gallery_" . $page . ".html";
188
+        $filename = PROFILE_PATH."user_gallery_".$page.".html";
189 189
         open_output_buffer();
190 190
 
191 191
         page_head("Profile gallery: page $page of $numPages", null, false, "../");
@@ -244,7 +244,7 @@  discard block
 block discarded – undo
244 244
     // of the userids who belong to those countries.
245 245
     // Format: array[country][index] = userid.
246 246
 
247
-    foreach($profiles as $profile) {
247
+    foreach ($profiles as $profile) {
248 248
         $user = BoincUser::lookup_id($profile->userid);
249 249
         if (!$user) continue; // maybe we should delete the profile if user is non-existent anymore?
250 250
         if ($user->country) {
@@ -264,7 +264,7 @@  discard block
 block discarded – undo
264 264
     // TODO: Define a constant for the desired number of rows per page.
265 265
 
266 266
     foreach ($countries as $country) {
267
-        $baseFileName =  "profile_country_" . get_legal_filename($country);
267
+        $baseFileName = "profile_country_".get_legal_filename($country);
268 268
         build_profile_pages(
269 269
             $countryMembers[$country],
270 270
             "User Profiles from $country", 5, 2,
@@ -290,7 +290,7 @@  discard block
 block discarded – undo
290 290
     $numIds = 0;
291 291
     $members = array();
292 292
 
293
-    foreach($profiles as $profile) {
293
+    foreach ($profiles as $profile) {
294 294
         $user = BoincUser::lookup_id($profile->userid);
295 295
         if (!$user) continue; // maybe we should delete the profile if user is non-existent anymore?
296 296
         if ($user->name) {
@@ -335,11 +335,11 @@  discard block
 block discarded – undo
335 335
 function build_profile_pages(
336 336
     $members, $title, $rowsPerPage, $colsPerPage, $dir, $base_filename
337 337
 ) {
338
-    $numPerPage = $rowsPerPage * $colsPerPage;
339
-    $numPages = ceil(count($members) / $numPerPage);
338
+    $numPerPage = $rowsPerPage*$colsPerPage;
339
+    $numPages = ceil(count($members)/$numPerPage);
340 340
 
341 341
     for ($page = 1; $page <= $numPages; $page++) {
342
-        $filename = $dir . $base_filename . "_" . $page . ".html";
342
+        $filename = $dir.$base_filename."_".$page.".html";
343 343
         open_output_buffer();
344 344
 
345 345
         $pagetitle = $title.": Page $page of $numPages";
@@ -347,7 +347,7 @@  discard block
 block discarded – undo
347 347
 
348 348
         echo "Last updated ", pretty_time_str(time()), "<p>\n";
349 349
 
350
-        $offset = (($page-1) * $rowsPerPage * $colsPerPage);
350
+        $offset = (($page - 1)*$rowsPerPage*$colsPerPage);
351 351
 
352 352
         show_user_table($members, $offset, $numPerPage, $colsPerPage);
353 353
 
@@ -364,11 +364,11 @@  discard block
 block discarded – undo
364 364
     print_debug_msg("Beginning to build country summary page...");
365 365
     $countries = array_keys($countryMembers);
366 366
 
367
-    $filename = PROFILE_PATH . "profile_country.html";
367
+    $filename = PROFILE_PATH."profile_country.html";
368 368
     open_output_buffer();
369 369
 
370 370
     page_head("User Profiles by Country", null, null, "../");
371
-    echo "Last updated " . pretty_time_str(time()) . "<p>";
371
+    echo "Last updated ".pretty_time_str(time())."<p>";
372 372
 
373 373
     start_table();
374 374
     row_heading_array(array("Country", "Profiles"));
@@ -413,7 +413,7 @@  discard block
 block discarded – undo
413 413
 
414 414
 $caching = true;
415 415
 
416
-if (@$argv[1]=="-d") $debug=true;
416
+if (@$argv[1] == "-d") $debug = true;
417 417
 
418 418
 build_country_pages();
419 419
 build_alpha_pages();
Please login to merge, or discard this patch.
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -180,7 +180,7 @@
 block discarded – undo
180 180
         $numPages = 1;
181 181
     }
182 182
 
183
-    print_debug_msg("Generating $numPages pages");
183
+    print_debug_msg("generating $numPages pages");
184 184
 
185 185
     $count = 0;
186 186
 
Please login to merge, or discard this patch.
html/ops/analyze_coproc_log.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
23 23
 // - daily total
24 24
 // - breakdown by desc (number, credit)
25 25
 
26
-ini_set ("memory_limit", "1G");
26
+ini_set("memory_limit", "1G");
27 27
 set_time_limit(0);
28 28
 
29 29
 $cli_only = true;
@@ -76,7 +76,7 @@  discard block
 block discarded – undo
76 76
         add_to_array($days, $day, $granted);
77 77
     }
78 78
     $i++;
79
-    if ($i % 10000 == 0) echo "$i\n";
79
+    if ($i%10000 == 0) echo "$i\n";
80 80
 }
81 81
 
82 82
 uasort($hosts, "compare");
Please login to merge, or discard this patch.
html/ops/make_emails_lowercase.php 4 patches
Indentation   +16 added lines, -16 removed lines patch added patch discarded remove patch
@@ -37,14 +37,14 @@  discard block
 block discarded – undo
37 37
 
38 38
 // activate/deactivate script
39 39
 if (1) {
40
-  echo "
40
+    echo "
41 41
 This script needs to be activated before it can be run.
42 42
 Once you understand what the script does you can change the
43 43
 if (1) to if (0) at the top of the file to activate it.
44 44
 Be sure to deactivate the script after using it to make sure
45 45
 it is not accidentally run.
46 46
 ";
47
-  exit;
47
+    exit;
48 48
 }
49 49
 
50 50
 db_init();
@@ -63,33 +63,33 @@  discard block
 block discarded – undo
63 63
 // loop over all users
64 64
 while ($user = _mysql_fetch_object($result)) {
65 65
 
66
-  $id=$user->id;
67
-  $email_addr=$user->email_addr;
68
-  $cpid=$user->cross_project_id;
66
+    $id=$user->id;
67
+    $email_addr=$user->email_addr;
68
+    $cpid=$user->cross_project_id;
69 69
 
70
-  $new_email=strtolower(trim($email_addr));
70
+    $new_email=strtolower(trim($email_addr));
71 71
   
72
-  if (strcmp($email_addr, $new_email))
72
+    if (strcmp($email_addr, $new_email))
73 73
     echo "Problematic email address [$id] $email_addr becomes $new_email<br/>";
74 74
   
75
-  if (!(strcmp($cpid,"0"))) {
75
+    if (!(strcmp($cpid,"0"))) {
76 76
     $newcpid=random_string();
77 77
     echo "Problematic CPID=0 for [$id] $email_addr gets CPID=$newcpid<br/>";
78
-  }
79
-  else
78
+    }
79
+    else
80 80
     $newcpid=$cpid;
81 81
   
82
-  if (strcmp($email_addr, $new_email) || strcmp($newcpid,$cpid)) {
82
+    if (strcmp($email_addr, $new_email) || strcmp($newcpid,$cpid)) {
83 83
     $update="update user set email_addr='$new_email', cross_project_id='$newcpid' where id='$id'";
84 84
     if ($confirm != "yes") {
85
-      echo "QUERY WOULD BE [$id] $query <br/>[click the link at the bottom to enable]<br/>";
86
-      $update_needed = TRUE;
85
+        echo "QUERY WOULD BE [$id] $query <br/>[click the link at the bottom to enable]<br/>";
86
+        $update_needed = TRUE;
87 87
     }
88 88
     else {
89
-      _mysql_query($update);
90
-      echo "Doing $update<br/>\n";
89
+        _mysql_query($update);
90
+        echo "Doing $update<br/>\n";
91
+    }
91 92
     }
92
-  }
93 93
 }
94 94
 if ($confirm != "yes" && $update_needed) {
95 95
     echo "You can enable the changes by <a href=\"make_emails_lowercase.php?confirm=yes\">click</a>";
Please login to merge, or discard this patch.
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -75,8 +75,7 @@  discard block
 block discarded – undo
75 75
   if (!(strcmp($cpid,"0"))) {
76 76
     $newcpid=random_string();
77 77
     echo "Problematic CPID=0 for [$id] $email_addr gets CPID=$newcpid<br/>";
78
-  }
79
-  else
78
+  } else
80 79
     $newcpid=$cpid;
81 80
   
82 81
   if (strcmp($email_addr, $new_email) || strcmp($newcpid,$cpid)) {
@@ -84,8 +83,7 @@  discard block
 block discarded – undo
84 83
     if ($confirm != "yes") {
85 84
       echo "QUERY WOULD BE [$id] $query <br/>[click the link at the bottom to enable]<br/>";
86 85
       $update_needed = TRUE;
87
-    }
88
-    else {
86
+    } else {
89 87
       _mysql_query($update);
90 88
       echo "Doing $update<br/>\n";
91 89
     }
Please login to merge, or discard this patch.
Upper-Lower-Casing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -83,11 +83,11 @@
 block discarded – undo
83 83
     $update="update user set email_addr='$new_email', cross_project_id='$newcpid' where id='$id'";
84 84
     if ($confirm != "yes") {
85 85
       echo "QUERY WOULD BE [$id] $query <br/>[click the link at the bottom to enable]<br/>";
86
-      $update_needed = TRUE;
86
+      $update_needed = true;
87 87
     }
88 88
     else {
89 89
       _mysql_query($update);
90
-      echo "Doing $update<br/>\n";
90
+      echo "doing $update<br/>\n";
91 91
     }
92 92
   }
93 93
 }
Please login to merge, or discard this patch.
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -63,24 +63,24 @@
 block discarded – undo
63 63
 // loop over all users
64 64
 while ($user = _mysql_fetch_object($result)) {
65 65
 
66
-  $id=$user->id;
67
-  $email_addr=$user->email_addr;
68
-  $cpid=$user->cross_project_id;
66
+  $id = $user->id;
67
+  $email_addr = $user->email_addr;
68
+  $cpid = $user->cross_project_id;
69 69
 
70
-  $new_email=strtolower(trim($email_addr));
70
+  $new_email = strtolower(trim($email_addr));
71 71
 
72 72
   if (strcmp($email_addr, $new_email))
73 73
     echo "Problematic email address [$id] $email_addr becomes $new_email<br/>";
74 74
 
75
-  if (!(strcmp($cpid,"0"))) {
76
-    $newcpid=random_string();
75
+  if (!(strcmp($cpid, "0"))) {
76
+    $newcpid = random_string();
77 77
     echo "Problematic CPID=0 for [$id] $email_addr gets CPID=$newcpid<br/>";
78 78
   }
79 79
   else
80
-    $newcpid=$cpid;
80
+    $newcpid = $cpid;
81 81
 
82
-  if (strcmp($email_addr, $new_email) || strcmp($newcpid,$cpid)) {
83
-    $update="update user set email_addr='$new_email', cross_project_id='$newcpid' where id='$id'";
82
+  if (strcmp($email_addr, $new_email) || strcmp($newcpid, $cpid)) {
83
+    $update = "update user set email_addr='$new_email', cross_project_id='$newcpid' where id='$id'";
84 84
     if ($confirm != "yes") {
85 85
       echo "QUERY WOULD BE [$id] $query <br/>[click the link at the bottom to enable]<br/>";
86 86
       $update_needed = TRUE;
Please login to merge, or discard this patch.
html/ops/team_export.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -100,7 +100,7 @@
 block discarded – undo
100 100
     $f = fopen("temp.xml", "w");
101 101
     $teams = BoincTeam::enum(null);
102 102
     fwrite($f, "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<teams>\n");
103
-    foreach($teams as $team) {
103
+    foreach ($teams as $team) {
104 104
         handle_team($team, $f);
105 105
     }
106 106
     fwrite($f, "</teams>\n");
Please login to merge, or discard this patch.
html/ops/badge_admin.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@
 block discarded – undo
39 39
     $i = 0;
40 40
     foreach ($badges as $badge) {
41 41
         echo "<tr class=row$i valign=top><form action=badge_admin.php method=POST>";
42
-        $i = 1-$i;
42
+        $i = 1 - $i;
43 43
         echo "<td>$badge->id</td>\n";
44 44
         echo "<input type=hidden name=id value=$badge->id>";
45 45
         $nu = BoincBadgeUser::count("badge_id=$badge->id");
Please login to merge, or discard this patch.
html/ops/db_schemaversion.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -28,7 +28,7 @@
 block discarded – undo
28 28
 $updates = array();
29 29
 foreach ($db_updates as $db_update) {
30 30
     if ($db_update[0] > $db_revision) {
31
-		$db_revision = $db_update[0];
31
+        $db_revision = $db_update[0];
32 32
     }
33 33
 }
34 34
 
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
 
22 22
 $db_revision = 0;
23 23
 if (file_exists("../../db_revision")) {
24
-    $db_revision = (int) file_get_contents("../../db_revision");
24
+    $db_revision = (int)file_get_contents("../../db_revision");
25 25
 }
26 26
 require_once("db_update.php");
27 27
 
Please login to merge, or discard this patch.