@@ -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 | } |
@@ -35,7 +35,7 @@ discard block |
||
| 35 | 35 | // delete notifications older than 90 days |
| 36 | 36 | // |
| 37 | 37 | function delete_old_notifies() { |
| 38 | - $t = time()-90*86400; |
|
| 38 | + $t = time() - 90*86400; |
|
| 39 | 39 | BoincNotify::delete_aux("create_time < $t"); |
| 40 | 40 | } |
| 41 | 41 | |
@@ -61,7 +61,7 @@ discard block |
||
| 61 | 61 | function send_notify_emails() { |
| 62 | 62 | $db = BoincDb::get(); |
| 63 | 63 | |
| 64 | - $t = time() - (86400 + 3600); // 1-hour slop factor |
|
| 64 | + $t = time() - (86400 + 3600); // 1-hour slop factor |
|
| 65 | 65 | $query = "select notify.* from ".$db->db_name.".notify, ".$db->db_name.".forum_preferences where forum_preferences.pm_notification=2 and notify.userid = forum_preferences.userid and notify.create_time > $t"; |
| 66 | 66 | |
| 67 | 67 | $notifies = BoincNotify::enum_general($query); |