Passed
Push — dpa_docker_wrapper12 ( e18bd7 )
by David
08:59
created
html/ops/mass_email.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -84,7 +84,7 @@
 block discarded – undo
84 84
 
85 85
     $result = _mysql_query($query);
86 86
     while ($user = _mysql_fetch_object($result)) {
87
-    	// TODO: might want to also replace TOTAL_CREDIT, RAC, and similar.
87
+        // TODO: might want to also replace TOTAL_CREDIT, RAC, and similar.
88 88
         $body_to_send = str_replace("USERNAME", $user->name, $body);
89 89
         $body_to_send .= "\n\nTo opt out of future emails from ".PROJECT.", please edit your project preferences at ".secure_url_base()."prefs.php?subset=project\n";
90 90
         $retval = send_email($user, $subject, $body_to_send);
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@
 block discarded – undo
36 36
 // These are set to large values because otherwise the script has
37 37
 // a tendency to just stop after some time.
38 38
 //
39
-ini_set ("memory_limit", "20M");
39
+ini_set("memory_limit", "20M");
40 40
 set_time_limit(3600);
41 41
 
42 42
 $receiver = 0;
Please login to merge, or discard this patch.
html/ops/remote_server_status.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -80,41 +80,41 @@
 block discarded – undo
80 80
         die("can't parse config file\n");
81 81
     }
82 82
     $config = $c->config;
83
-    $master_url = (string) $config->master_url;
83
+    $master_url = (string)$config->master_url;
84 84
     $u = parse_url($master_url);
85 85
     $master_host = $u["host"];
86 86
 
87
-    $url = (string) $config->download_url;
87
+    $url = (string)$config->download_url;
88 88
     $u = parse_url($url);
89 89
     $h = $u["host"];
90 90
     if ($h != $master_host) {
91 91
         $y = new StdClass;
92 92
         $y->cmd = 'Download server';
93 93
         $y->host = $h;
94
-        $y->status = web_server_running($url)?1:0;
94
+        $y->status = web_server_running($url) ? 1 : 0;
95 95
         $x[] = $y;
96 96
     }
97
-    $url = (string) $config->upload_url;
97
+    $url = (string)$config->upload_url;
98 98
     $u = parse_url($url);
99 99
     $h = $u["host"];
100 100
     if ($h != $master_host) {
101 101
         $y = new StdClass;
102 102
         $y->cmd = 'Upload server';
103 103
         $y->host = $h;
104
-        $y->status = web_server_running($url)?1:0;
104
+        $y->status = web_server_running($url) ? 1 : 0;
105 105
         $x[] = $y;
106 106
     }
107 107
 
108 108
     $main_host = (string)$c->config->host;
109 109
     if ($c->config->www_host) {
110
-        $web_host = (string) $c->config->www_host;
110
+        $web_host = (string)$c->config->www_host;
111 111
     } else {
112 112
         $web_host = $main_host;
113 113
     }
114 114
     $daemons = $c->daemons;
115 115
     foreach ($daemons->daemon as $d) {
116 116
         if ((int)$d->disabled != 0) continue;
117
-        $host = $d->host?(string)$d->host:$main_host;
117
+        $host = $d->host ? (string)$d->host : $main_host;
118 118
         if ($host != $web_host) {
119 119
             $y = new StdClass;
120 120
             $y->cmd = (string)$d->cmd;
Please login to merge, or discard this patch.
html/ops/reset_hrclass.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -21,11 +21,11 @@
 block discarded – undo
21 21
 // TODO: document - when/why would you want to do this?
22 22
 // TODO: use new DB interface
23 23
 
24
-include_once( "../inc/db.inc" );
25
-include_once( "../inc/util.inc" );
26
-include_once( "../inc/db_ops.inc" );
27
-include_once( "../inc/util_ops.inc" );
28
-include_once( "../inc/prefs.inc" );
24
+include_once("../inc/db.inc");
25
+include_once("../inc/util.inc");
26
+include_once("../inc/db_ops.inc");
27
+include_once("../inc/util_ops.inc");
28
+include_once("../inc/prefs.inc");
29 29
 
30 30
 db_init();
31 31
 
Please login to merge, or discard this patch.
html/ops/submit_init_priority.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -33,7 +33,7 @@
 block discarded – undo
33 33
         echo "no app for batch $b->id\n";
34 34
         return;
35 35
     }
36
-    if ($b->fraction_done>0 && $b->credit_canonical>0) {
36
+    if ($b->fraction_done > 0 && $b->credit_canonical > 0) {
37 37
         $credit_total = $b->credit_canonical/$b->fraction_done;
38 38
         $fpops_total = $credit_total*(86400e9/200);
39 39
     } else {
Please login to merge, or discard this patch.
html/ops/credit.php 2 patches
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -92,8 +92,8 @@  discard block
 block discarded – undo
92 92
     start_table();
93 93
     table_header("Workunit", "Elapsed", "Proj FLOPS", "Raw credit", "granted");
94 94
     $n = 0;
95
-    $total=0;
96
-    foreach($rs as $r) {
95
+    $total = 0;
96
+    foreach ($rs as $r) {
97 97
         $raw_credit = $r->elapsed_time*$r->flops_estimate*COBB_SCALE;
98 98
         $n++;
99 99
         $total += $raw_credit;
@@ -116,7 +116,7 @@  discard block
 block discarded – undo
116 116
 }
117 117
 
118 118
 function av_string($av_id) {
119
-    if ($av_id> 0) {
119
+    if ($av_id > 0) {
120 120
         $av = BoincAppVersion::lookup($av_id);
121 121
         $plat = BoincPlatform::lookup_id($av->platformid);
122 122
         $x = "<a href=credit.php?av_id=$av_id>$plat->name $av->plan_class</a>";
Please login to merge, or discard this patch.
Upper-Lower-Casing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
86 86
 
87 87
 function show_host_av($host_id, $av_id) {
88 88
     $hav = BoincHostAppVersion::lookup("host_id=$host_id and app_version_id=$av_id");
89
-    page_head("Host $host_id / app_version $av_id credit");
89
+    page_head("host $host_id / app_version $av_id credit");
90 90
     echo "Results";
91 91
     $rs = BoincResult::enum("hostid=$host_id and app_version_id=$av_id and validate_state=1 order by id desc limit 100");
92 92
     start_table();
@@ -180,7 +180,7 @@  discard block
 block discarded – undo
180 180
 
181 181
 function show_appl($app_id) {
182 182
     $app = BoincApp::lookup_id($app_id);
183
-    page_head("App $app->user_friendly_name credit");
183
+    page_head("app $app->user_friendly_name credit");
184 184
     $avs = BoincAppVersion::enum("appid=$app_id and deprecated=0");
185 185
     start_table();
186 186
     table_header("platform/class/version", "PFC nsamples", "PFC avg", "PFC scale");
Please login to merge, or discard this patch.
html/ops/manage_special_users.php 3 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@
 block discarded – undo
38 38
     WHERE CONVERT(special_user, DECIMAL) > 0 and prefs.userid=user.id"
39 39
 );
40 40
 for ($i=1; $i<=_mysql_num_rows($result); $i++){
41
-	$foo = _mysql_fetch_object($result);
41
+    $foo = _mysql_fetch_object($result);
42 42
     echo "<form action=\"manage_special_users_action.php\" method=\"POST\">\n";
43 43
     echo "<input type=\"hidden\" name=\"userid\" value=\"$foo->userid\"
44 44
         <tr><td>$foo->name ($foo->id)</td>
Please login to merge, or discard this patch.
Braces   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@
 block discarded – undo
37 37
     FROM forum_preferences as prefs, user
38 38
     WHERE CONVERT(special_user, DECIMAL) > 0 and prefs.userid=user.id"
39 39
 );
40
-for ($i=1; $i<=_mysql_num_rows($result); $i++){
40
+for ($i=1; $i<=_mysql_num_rows($result); $i++) {
41 41
 	$foo = _mysql_fetch_object($result);
42 42
     echo "<form action=\"manage_special_users_action.php\" method=\"POST\">\n";
43 43
     echo "<input type=\"hidden\" name=\"userid\" value=\"$foo->userid\"
Please login to merge, or discard this patch.
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -27,8 +27,8 @@  discard block
 block discarded – undo
27 27
 row1("Current special users", '9');
28 28
 
29 29
 echo "<tr><td>User</td>";
30
-for ($i=0; $i<S_NFLAGS; $i++) {
31
-    echo "<td width=\"15\">" . $special_user_bitfield[$i] . "</td>\n";
30
+for ($i = 0; $i < S_NFLAGS; $i++) {
31
+    echo "<td width=\"15\">".$special_user_bitfield[$i]."</td>\n";
32 32
 }
33 33
 echo "</tr>";
34 34
 
@@ -37,13 +37,13 @@  discard block
 block discarded – undo
37 37
     FROM forum_preferences as prefs, user
38 38
     WHERE CONVERT(special_user, DECIMAL) > 0 and prefs.userid=user.id"
39 39
 );
40
-for ($i=1; $i<=_mysql_num_rows($result); $i++){
40
+for ($i = 1; $i <= _mysql_num_rows($result); $i++) {
41 41
 	$foo = _mysql_fetch_object($result);
42 42
     echo "<form action=\"manage_special_users_action.php\" method=\"POST\">\n";
43 43
     echo "<input type=\"hidden\" name=\"userid\" value=\"$foo->userid\"
44 44
         <tr><td>$foo->name ($foo->id)</td>
45 45
     ";
46
-    for ($j=0; $j<S_NFLAGS; $j++) {
46
+    for ($j = 0; $j < S_NFLAGS; $j++) {
47 47
         $bit = substr($foo->special_user, $j, 1);
48 48
         echo "<td><input type=\"checkbox\" name=\"role".$j."\" value=\"1\"";
49 49
         if ($bit == 1) {
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
 echo "<tr><form action=\"manage_special_users_action.php\" method=\"POST\">\n";
59 59
 echo "<td>Add UserID:<input type=\"text\" name=\"userid\" size=\"6\"></td>";
60 60
 
61
-for ($j=0; $j<S_NFLAGS; $j++) {
61
+for ($j = 0; $j < S_NFLAGS; $j++) {
62 62
     echo "<td><input type=\"checkbox\" name=\"role".$j."\" value=\"1\"";
63 63
     echo "></td>\n";
64 64
 }
Please login to merge, or discard this patch.
html/ops/grant_credit.php 2 patches
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
 }
50 50
 
51 51
 function grant_credits_for_wu($wuid) {
52
-    $max_credit=300;
52
+    $max_credit = 300;
53 53
     $ndone = 0;
54 54
     $query_r = _mysql_query("select * from result where granted_credit=0 and claimed_credit>0 and workunitid=$wuid");
55 55
  
@@ -66,8 +66,8 @@  discard block
 block discarded – undo
66 66
         $user    = _mysql_fetch_object($query_u);
67 67
 
68 68
         $credit = $result->claimed_credit;
69
-        if ($credit>$max_credit) {
70
-            $credit=$max_credit;
69
+        if ($credit > $max_credit) {
70
+            $credit = $max_credit;
71 71
             echo " WARNING: USER $user->name ($userid) CLAIMED $result->claimed_credit CREDITS (getting $credit)!";
72 72
         }
73 73
         $user->total_credit += $credit;
@@ -106,8 +106,8 @@  discard block
 block discarded – undo
106 106
 }
107 107
 
108 108
 function grant_credits_for_cancelled() {
109
-    $ngranted=0;
110
-    $query_w  = _mysql_query("select * from workunit where error_mask!=0");
109
+    $ngranted = 0;
110
+    $query_w = _mysql_query("select * from workunit where error_mask!=0");
111 111
     while (($workunit = _mysql_fetch_object($query_w))) {
112 112
         // echo "Starting WU $workunit->id\n";
113 113
         $ngranted += grant_credits_for_wu($workunit->id);
Please login to merge, or discard this patch.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -41,8 +41,7 @@
 block discarded – undo
41 41
 function testquery($argstring) {
42 42
     if (0) {
43 43
         echo "WOULD DO: $argstring\n";
44
-    }
45
-    else {
44
+    } else {
46 45
         _mysql_query($argstring);
47 46
     }
48 47
     return;
Please login to merge, or discard this patch.
html/ops/news_convert.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -92,7 +92,7 @@
 block discarded – undo
92 92
     $content = str_replace("\n", " ", $content);
93 93
     $content = _mysql_escape_string($content);
94 94
 
95
-    $thread_id  = BoincThread::insert("(forum, owner, title, create_time, timestamp, replies) values ($forum_id, $user->id, '$title', $when, $when, 0)");
95
+    $thread_id = BoincThread::insert("(forum, owner, title, create_time, timestamp, replies) values ($forum_id, $user->id, '$title', $when, $when, 0)");
96 96
     if (!$thread_id) {
97 97
         echo "thread insert failed\n";
98 98
         echo "title: [$title]\n";
Please login to merge, or discard this patch.
html/ops/remind.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -82,7 +82,7 @@  discard block
 block discarded – undo
82 82
 $globals->userid = 0;
83 83
 $globals->count = -1;
84 84
 
85
-for ($i=1; $i<$argc; $i++) {
85
+for ($i = 1; $i < $argc; $i++) {
86 86
     if ($argv[$i] == "--failed") {
87 87
         $globals->do_failed = true;
88 88
     } elseif ($argv[$i] == "--lapsed") {
@@ -189,7 +189,7 @@  discard block
 block discarded – undo
189 189
         number_format($user->total_credit, 0),
190 190
         opt_out_url($user),
191 191
         $user->id,
192
-        floor ((time() - last_rpc_time($user)) / 86400),
192
+        floor((time() - last_rpc_time($user))/86400),
193 193
     );
194 194
     return preg_replace($pat, $rep, $template);
195 195
 }
@@ -240,7 +240,7 @@  discard block
 block discarded – undo
240 240
     $result = _mysql_query($query);
241 241
     $t = 0;
242 242
     while ($r = _mysql_fetch_object($result)) {
243
-        if ($r->email_type !=2 && $r->email_type != 3) continue;
243
+        if ($r->email_type != 2 && $r->email_type != 3) continue;
244 244
         if ($r->time_sent > $t) $t = $r->time_sent;
245 245
 
246 246
     }
@@ -268,7 +268,7 @@  discard block
 block discarded – undo
268 268
     if ($globals->explain) {
269 269
         $x = (time() - $user->create_time)/86400;
270 270
         $t = last_rpc_time($user);
271
-        $show_lapsed_interval = (time()-$t)/86400;
271
+        $show_lapsed_interval = (time() - $t)/86400;
272 272
         echo "user $user->id ($user->email_addr) was created $x days ago\n";
273 273
         echo "  total_credit: $user->total_credit; last RPC $show_lapsed_interval days ago\n";
274 274
         echo "  sending $do_type email\n";
Please login to merge, or discard this patch.