@@ -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); |
@@ -106,7 +106,7 @@ discard block |
||
| 106 | 106 | $db = BoincDb::get(true); |
| 107 | 107 | $result = $db->do_query($main_query); |
| 108 | 108 | |
| 109 | -if($db->base_errno()) { |
|
| 109 | +if ($db->base_errno()) { |
|
| 110 | 110 | echo $db->base_error(); |
| 111 | 111 | } |
| 112 | 112 | |
@@ -127,7 +127,7 @@ discard block |
||
| 127 | 127 | echo "</td>\n"; |
| 128 | 128 | |
| 129 | 129 | echo " <td align=\"left\" valign=\"top\">"; |
| 130 | - if($res->platform) |
|
| 130 | + if ($res->platform) |
|
| 131 | 131 | echo $res->platform; |
| 132 | 132 | else |
| 133 | 133 | echo "unknown"; |
@@ -144,31 +144,31 @@ discard block |
||
| 144 | 144 | echo " </td>\n"; |
| 145 | 145 | |
| 146 | 146 | $abs = $res->pass_count; |
| 147 | - $perc = $abs / $tot * 100; |
|
| 147 | + $perc = $abs/$tot*100; |
|
| 148 | 148 | echo " <td align=\"right\" valign=\"top\">"; |
| 149 | 149 | printf("<div title=\"%d\">%.4f%%</div> ", $abs, $perc); |
| 150 | 150 | echo "</td>\n"; |
| 151 | 151 | |
| 152 | 152 | $abs = $res->fail_count; |
| 153 | - $perc = $abs / $tot * 100; |
|
| 153 | + $perc = $abs/$tot*100; |
|
| 154 | 154 | echo " <td align=\"right\" valign=\"top\">"; |
| 155 | 155 | printf("<div title=\"%d\">%.4f%%</div> ", $abs, $perc); |
| 156 | 156 | echo "</td>\n"; |
| 157 | 157 | |
| 158 | 158 | $abs = $res->fail_count1; |
| 159 | - $perc = $abs / $tot * 100; |
|
| 159 | + $perc = $abs/$tot*100; |
|
| 160 | 160 | echo " <td align=\"right\" valign=\"top\">"; |
| 161 | 161 | printf("<div title=\"%d\">%.4f%%</div> ", $abs, $perc); |
| 162 | 162 | echo "</td>\n"; |
| 163 | 163 | |
| 164 | 164 | $abs = $res->fail_count2; |
| 165 | - $perc = $abs / $tot * 100; |
|
| 165 | + $perc = $abs/$tot*100; |
|
| 166 | 166 | echo " <td align=\"right\" valign=\"top\">"; |
| 167 | 167 | printf("<div title=\"%d\">%.4f%%</div> ", $abs, $perc); |
| 168 | 168 | echo "</td>\n"; |
| 169 | 169 | |
| 170 | 170 | $abs = $res->fail_count3; |
| 171 | - $perc = $abs / $tot * 100; |
|
| 171 | + $perc = $abs/$tot*100; |
|
| 172 | 172 | echo " <td align=\"right\" valign=\"top\">"; |
| 173 | 173 | if ($abs > 0) { |
| 174 | 174 | echo "<a title=\"$abs\" href=\"ordered_client_errors.php?appid=$query_appid&nsecs=$query_nsecs&appverid=$res->app_version_id\">"; |
@@ -179,25 +179,25 @@ discard block |
||
| 179 | 179 | echo "</td>\n"; |
| 180 | 180 | |
| 181 | 181 | $abs = $res->fail_count4; |
| 182 | - $perc = $abs / $tot * 100; |
|
| 182 | + $perc = $abs/$tot*100; |
|
| 183 | 183 | echo " <td align=\"right\" valign=\"top\">"; |
| 184 | 184 | printf("<div title=\"%d\">%.4f%%</div> ", $abs, $perc); |
| 185 | 185 | echo "</td>\n"; |
| 186 | 186 | |
| 187 | 187 | $abs = $res->fail_count5; |
| 188 | - $perc = $abs / $tot * 100; |
|
| 188 | + $perc = $abs/$tot*100; |
|
| 189 | 189 | echo " <td align=\"right\" valign=\"top\">"; |
| 190 | 190 | printf("<div title=\"%d\">%.4f%%</div> ", $abs, $perc); |
| 191 | 191 | echo "</td>\n"; |
| 192 | 192 | |
| 193 | 193 | $abs = $res->fail_count6; |
| 194 | - $perc = $abs / $tot * 100; |
|
| 194 | + $perc = $abs/$tot*100; |
|
| 195 | 195 | echo " <td align=\"right\" valign=\"top\">"; |
| 196 | 196 | printf("<div title=\"%d\">%.4f%%</div> ", $abs, $perc); |
| 197 | 197 | echo "</td>\n"; |
| 198 | 198 | |
| 199 | 199 | $abs = $res->fail_count7; |
| 200 | - $perc = $abs / $tot * 100; |
|
| 200 | + $perc = $abs/$tot*100; |
|
| 201 | 201 | echo " <td align=\"right\" valign=\"top\">"; |
| 202 | 202 | if ($abs > 0) { |
| 203 | 203 | echo "<a title=\"$abs\" href=\"db_action.php?table=result&server_state=5&outcome=6&detail=low&nresults=20&clauses=app_version_id+%3D+$res->app_version_id\">"; |