@@ -100,7 +100,7 @@ |
||
| 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"); |
@@ -39,7 +39,7 @@ |
||
| 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"); |
@@ -21,7 +21,7 @@ |
||
| 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 | |
@@ -58,7 +58,7 @@ discard block |
||
| 58 | 58 | $post = array(); |
| 59 | 59 | $post["request"] = $xml; |
| 60 | 60 | if ($req->type == "upload") { |
| 61 | - $i=0; |
|
| 61 | + $i = 0; |
|
| 62 | 62 | foreach ($files as $f) { |
| 63 | 63 | if ($f['path'] != "") { |
| 64 | 64 | $post["file_$i"] = '@'.$f['path']; |
@@ -70,9 +70,9 @@ discard block |
||
| 70 | 70 | curl_setopt($ch, CURLOPT_POSTFIELDS, $post); |
| 71 | 71 | $reply = curl_exec($ch); |
| 72 | 72 | if ($reply) { |
| 73 | - print $reply . "\n"; |
|
| 73 | + print $reply."\n"; |
|
| 74 | 74 | } else { |
| 75 | - print curl_error($ch) . "\n"; |
|
| 75 | + print curl_error($ch)."\n"; |
|
| 76 | 76 | } |
| 77 | 77 | curl_close($ch); |
| 78 | 78 | } |
@@ -40,7 +40,7 @@ |
||
| 40 | 40 | } |
| 41 | 41 | if ($is_helpdesk) { |
| 42 | 42 | $diff = ($now - $thread->create_time)/86400; |
| 43 | - $activity = ($thread->sufferers+1)/$diff; |
|
| 43 | + $activity = ($thread->sufferers + 1)/$diff; |
|
| 44 | 44 | echo "thread $thread->id helpdesk $diff $activity\n"; |
| 45 | 45 | } else { |
| 46 | 46 | $posts = BoincPost::enum("thread=$thread->id"); |
@@ -51,7 +51,7 @@ |
||
| 51 | 51 | $n = 0; |
| 52 | 52 | while (1) { |
| 53 | 53 | $n++; |
| 54 | - if ($n % 1000 == 0) echo "$n\n"; |
|
| 54 | + if ($n%1000 == 0) echo "$n\n"; |
|
| 55 | 55 | $x = fgets($fres); |
| 56 | 56 | if (!$x) break; |
| 57 | 57 | list($reswuid, $resid) = sscanf($x, "%d %d"); |
@@ -51,7 +51,7 @@ |
||
| 51 | 51 | row2("Plan class", $av->plan_class); |
| 52 | 52 | row2("Version num", $av->version_num); |
| 53 | 53 | row2("Jobs validated", $av->pfc_n); |
| 54 | - row2("Average efficiency", $av->pfc_avg?1/$av->pfc_avg:"---"); |
|
| 54 | + row2("Average efficiency", $av->pfc_avg ? 1/$av->pfc_avg : "---"); |
|
| 55 | 55 | row2("Credit scale factor", $av->pfc_scale); |
| 56 | 56 | row2("Average credit", $av->expavg_credit); |
| 57 | 57 | end_table(); |
@@ -227,7 +227,7 @@ |
||
| 227 | 227 | if ($team->seti_id) { |
| 228 | 228 | if ($team->seti_id == $t->id) { |
| 229 | 229 | echo " case 1\n"; |
| 230 | - update_team($t, $team, $user); // update1 case |
|
| 230 | + update_team($t, $team, $user); // update1 case |
|
| 231 | 231 | } else { |
| 232 | 232 | echo " team exists but has wrong seti_id\n"; |
| 233 | 233 | } |
@@ -49,7 +49,7 @@ |
||
| 49 | 49 | _mysql_free_result($r2); |
| 50 | 50 | $nunsent = $x[0]; |
| 51 | 51 | |
| 52 | - if ($nsuccess>=3 and $nunsent==0) { |
|
| 52 | + if ($nsuccess >= 3 and $nunsent == 0) { |
|
| 53 | 53 | echo "WU $wu->id has $nsuccess success, $nunsent unsent \n"; |
| 54 | 54 | _mysql_query("update workunit set need_validate=1 where id=$wu->id"); |
| 55 | 55 | } |