@@ -27,7 +27,7 @@ discard block |
||
27 | 27 | \***********************************************************************/ |
28 | 28 | |
29 | 29 | $limit = get_int('limit', true); |
30 | -if (! $limit > 0 ) $limit = 30; |
|
30 | +if (!$limit > 0) $limit = 30; |
|
31 | 31 | |
32 | 32 | |
33 | 33 | |
@@ -48,7 +48,7 @@ discard block |
||
48 | 48 | echo "<input class=\"btn btn-default\" type=\"submit\" value=\"Display\">\n"; |
49 | 49 | echo "</form>\n"; |
50 | 50 | |
51 | -$query="SELECT * FROM user ORDER BY create_time DESC LIMIT $limit"; |
|
51 | +$query = "SELECT * FROM user ORDER BY create_time DESC LIMIT $limit"; |
|
52 | 52 | $result = _mysql_query($query); |
53 | 53 | if (_mysql_num_rows($result) < 1) { |
54 | 54 | echo "There are no new users."; |
@@ -66,8 +66,8 @@ discard block |
||
66 | 66 | $joined = time_str($row->create_time); |
67 | 67 | $email_validated = $row->email_validated; |
68 | 68 | |
69 | - $team_name=""; |
|
70 | - if($row->teamid > 0){ |
|
69 | + $team_name = ""; |
|
70 | + if ($row->teamid > 0) { |
|
71 | 71 | $team = BoincTeam::lookup_id($row->teamid); |
72 | 72 | $team_name = $team->name; |
73 | 73 | } |
@@ -80,7 +80,7 @@ discard block |
||
80 | 80 | if ($special_bits != "0") { |
81 | 81 | for ($i = 0; $i < 7; $i++) { |
82 | 82 | $bit = substr($special_bits, $i, 1); |
83 | - if ($bit == '1'){ |
|
83 | + if ($bit == '1') { |
|
84 | 84 | if (!empty($roles)) { |
85 | 85 | $roles .= ", "; |
86 | 86 | } |
@@ -95,7 +95,7 @@ discard block |
||
95 | 95 | // Banished? |
96 | 96 | if (!empty($user->banished_until)) { |
97 | 97 | $dt = $user->banished_until - time(); |
98 | - if( $dt > 0 ) { |
|
98 | + if ($dt > 0) { |
|
99 | 99 | $x = "<span style=\"color: #ff0000\">Currently banished</span>"; |
100 | 100 | } |
101 | 101 | else { |
@@ -117,5 +117,5 @@ discard block |
||
117 | 117 | |
118 | 118 | admin_page_tail(); |
119 | 119 | |
120 | -$cvs_version_tracker[]="\$Id$"; //Generated automatically - do not edit |
|
120 | +$cvs_version_tracker[] = "\$Id$"; //Generated automatically - do not edit |
|
121 | 121 | ?> |
@@ -67,7 +67,7 @@ discard block |
||
67 | 67 | $email_validated = $row->email_validated; |
68 | 68 | |
69 | 69 | $team_name=""; |
70 | - if($row->teamid > 0){ |
|
70 | + if($row->teamid > 0) { |
|
71 | 71 | $team = BoincTeam::lookup_id($row->teamid); |
72 | 72 | $team_name = $team->name; |
73 | 73 | } |
@@ -80,7 +80,7 @@ discard block |
||
80 | 80 | if ($special_bits != "0") { |
81 | 81 | for ($i = 0; $i < 7; $i++) { |
82 | 82 | $bit = substr($special_bits, $i, 1); |
83 | - if ($bit == '1'){ |
|
83 | + if ($bit == '1') { |
|
84 | 84 | if (!empty($roles)) { |
85 | 85 | $roles .= ", "; |
86 | 86 | } |
@@ -97,8 +97,7 @@ discard block |
||
97 | 97 | $dt = $user->banished_until - time(); |
98 | 98 | if( $dt > 0 ) { |
99 | 99 | $x = "<span style=\"color: #ff0000\">Currently banished</span>"; |
100 | - } |
|
101 | - else { |
|
100 | + } else { |
|
102 | 101 | $x = "<span style=\"color: #ff9900\">Previously banished</span>"; |
103 | 102 | } |
104 | 103 | $roles .= $x; |
@@ -100,7 +100,7 @@ |
||
100 | 100 | $dom->preserveWhiteSpace = false; |
101 | 101 | $dom->formatOutput = true; |
102 | 102 | $dom->loadXML($prefs->asXML()); |
103 | - return $dom->saveXML($dom->documentElement) . "\n"; |
|
103 | + return $dom->saveXML($dom->documentElement)."\n"; |
|
104 | 104 | } |
105 | 105 | |
106 | 106 | function update_user($user, $app_id) { |
@@ -34,7 +34,7 @@ |
||
34 | 34 | |
35 | 35 | function cleanup_orphan_threads() { |
36 | 36 | $threads = BoincThread::enum(""); |
37 | - foreach($threads as $thread) { |
|
37 | + foreach ($threads as $thread) { |
|
38 | 38 | $forum = BoincForum::lookup_id($thread->forum); |
39 | 39 | if (!$forum) { |
40 | 40 | cleanup_thread($thread); |
@@ -84,7 +84,7 @@ |
||
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); |
@@ -36,7 +36,7 @@ |
||
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; |
@@ -80,41 +80,41 @@ |
||
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; |
@@ -55,5 +55,5 @@ |
||
55 | 55 | </form> |
56 | 56 | "; |
57 | 57 | admin_page_tail(); |
58 | -$cvs_version_tracker[]="\$Id$"; //Generated automatically - do not edit |
|
58 | +$cvs_version_tracker[] = "\$Id$"; //Generated automatically - do not edit |
|
59 | 59 | ?> |
@@ -21,11 +21,11 @@ |
||
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 |
@@ -33,7 +33,7 @@ |
||
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 { |
@@ -92,8 +92,8 @@ discard block |
||
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 |
||
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>"; |
@@ -86,7 +86,7 @@ discard block |
||
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 |
||
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"); |