@@ -30,7 +30,7 @@ discard block |
||
30 | 30 | $wuid2 = get_int('wuid2'); |
31 | 31 | $unsent_only = get_str('unsent_only', true); |
32 | 32 | |
33 | -if ($wuid1<1 || $wuid2<$wuid1) { |
|
33 | +if ($wuid1 < 1 || $wuid2 < $wuid1) { |
|
34 | 34 | admin_error_page( |
35 | 35 | "<h2>Workunit IDs fail to satisfy the conditions:<p> 0 < ID1 <= ID2" |
36 | 36 | ); |
@@ -46,5 +46,5 @@ discard block |
||
46 | 46 | echo " canceled jobs with $wuid1 <= workunit ID <= $wuid2</h2>"; |
47 | 47 | admin_page_tail(); |
48 | 48 | |
49 | -$cvs_version_tracker[]="\$Id$"; //Generated automatically - do not edit |
|
49 | +$cvs_version_tracker[] = "\$Id$"; //Generated automatically - do not edit |
|
50 | 50 | ?> |
@@ -92,7 +92,7 @@ |
||
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"; |
@@ -82,7 +82,7 @@ discard block |
||
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 |
||
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 |
||
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 |
||
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"; |
@@ -29,7 +29,7 @@ discard block |
||
29 | 29 | admin_page_head("Cancel Jobs"); |
30 | 30 | |
31 | 31 | $limit = get_int('limit', true); |
32 | -if (!$limit || $limit==0) { |
|
32 | +if (!$limit || $limit == 0) { |
|
33 | 33 | $limit = 100; |
34 | 34 | } |
35 | 35 | |
@@ -42,9 +42,9 @@ discard block |
||
42 | 42 | $clause = get_str('clause', true); |
43 | 43 | |
44 | 44 | if ($minid && $maxid) { |
45 | - $qclause = "id >=" . $minid . " AND id <=" . $maxid; |
|
45 | + $qclause = "id >=".$minid." AND id <=".$maxid; |
|
46 | 46 | } else if ($list) { |
47 | - $qclause = "id IN (" . $list . ")"; |
|
47 | + $qclause = "id IN (".$list.")"; |
|
48 | 48 | } else if ($uclause) { |
49 | 49 | $qclause = urldecode($uclause); |
50 | 50 | } else if ($clause) { |
@@ -161,5 +161,5 @@ discard block |
||
161 | 161 | |
162 | 162 | admin_page_tail(); |
163 | 163 | |
164 | -$cvs_version_tracker[]="\$Id$"; //Generated automatically - do not edit |
|
164 | +$cvs_version_tracker[] = "\$Id$"; //Generated automatically - do not edit |
|
165 | 165 | ?> |
@@ -100,7 +100,8 @@ |
||
100 | 100 | echo "</p>\n"; |
101 | 101 | echo "</form>\n"; |
102 | 102 | |
103 | -} else { // if ($qclause) |
|
103 | +} else { |
|
104 | +// if ($qclause) |
|
104 | 105 | |
105 | 106 | $query = "SELECT id, name FROM workunit WHERE canonical_resultid = 0 AND error_mask = 0 AND $qclause;"; |
106 | 107 | $db = BoincDb::get(true); |
@@ -186,11 +186,11 @@ discard block |
||
186 | 186 | |
187 | 187 | function site_list($sites) { |
188 | 188 | echo "<ul>\n"; |
189 | - for ($i=0; $i<count($sites); $i++) { |
|
189 | + for ($i = 0; $i < count($sites); $i++) { |
|
190 | 190 | $s = $sites[$i]; |
191 | 191 | $url = $s[0]; |
192 | 192 | $name = $s[1]; |
193 | - $comment = array_key_exists(2, $s)?$s[2]:""; |
|
193 | + $comment = array_key_exists(2, $s) ? $s[2] : ""; |
|
194 | 194 | echo "<li><a href=\"$url\">$name</a> $comment\n"; |
195 | 195 | } |
196 | 196 | echo "</ul>\n"; |
@@ -199,5 +199,5 @@ discard block |
||
199 | 199 | $GLOBALS['cpid_stats_sites'] = $cpid_stats_sites; |
200 | 200 | $GLOBALS['host_sites'] = $host_sites; |
201 | 201 | |
202 | -$cvs_version_tracker[]="\$Id$"; //Generated automatically - do not edit |
|
202 | +$cvs_version_tracker[] = "\$Id$"; //Generated automatically - do not edit |
|
203 | 203 | ?> |
@@ -32,7 +32,7 @@ |
||
32 | 32 | |
33 | 33 | function boinc_recaptcha_get_html($publickey) { |
34 | 34 | if ($publickey) { |
35 | - return '<div class="g-recaptcha" data-sitekey="' . $publickey . '"></div>'; |
|
35 | + return '<div class="g-recaptcha" data-sitekey="'.$publickey.'"></div>'; |
|
36 | 36 | } else { |
37 | 37 | return ''; |
38 | 38 | } |
@@ -164,7 +164,7 @@ |
||
164 | 164 | $user->prefs = $prefs; |
165 | 165 | } |
166 | 166 | function privilege($specialbit) { |
167 | - return (substr($this->special_user, $specialbit,1)==1); |
|
167 | + return (substr($this->special_user, $specialbit,1)==1); |
|
168 | 168 | } |
169 | 169 | function update($clause) { |
170 | 170 | $db = BoincDb::get(); |
@@ -215,7 +215,7 @@ |
||
215 | 215 | // |
216 | 216 | $fl = BoincForumLogging::lookup(0, 0); |
217 | 217 | if ($fl) { |
218 | - if ($fl->timestamp<time()-MAX_FORUM_LOGGING_TIME){ |
|
218 | + if ($fl->timestamp<time()-MAX_FORUM_LOGGING_TIME) { |
|
219 | 219 | BoincForumLogging::delete_aux("timestamp<'".(time()-MAX_FORUM_LOGGING_TIME)."' and userid != 0"); |
220 | 220 | BoincForumLogging::replace(0, 0, time()); |
221 | 221 | } |
@@ -27,7 +27,7 @@ discard block |
||
27 | 27 | $db = BoincDb::get(); |
28 | 28 | return $db->lookup('category', 'BoincCategory', $clause); |
29 | 29 | } |
30 | - static function enum($clause=null) { |
|
30 | + static function enum($clause = null) { |
|
31 | 31 | $db = BoincDb::get(); |
32 | 32 | return $db->enum('category', 'BoincCategory', $clause); |
33 | 33 | } |
@@ -78,7 +78,7 @@ discard block |
||
78 | 78 | $db = BoincDb::get(); |
79 | 79 | return $db->update($this, 'thread', $clause); |
80 | 80 | } |
81 | - static function enum($clause="") { |
|
81 | + static function enum($clause = "") { |
|
82 | 82 | $db = BoincDb::get(); |
83 | 83 | return $db->enum('thread', 'BoincThread', $clause); |
84 | 84 | } |
@@ -142,7 +142,7 @@ discard block |
||
142 | 142 | $db = BoincDb::get(); |
143 | 143 | $ret = $db->insert('forum_preferences', $clause); |
144 | 144 | } |
145 | - static function lookup(&$user, $nocache=false) { |
|
145 | + static function lookup(&$user, $nocache = false) { |
|
146 | 146 | if (!$user) return; |
147 | 147 | if (isset($user->prefs)) return; |
148 | 148 | if (!$nocache && isset(self::$cache[$user->id])) { |
@@ -164,7 +164,7 @@ discard block |
||
164 | 164 | $user->prefs = $prefs; |
165 | 165 | } |
166 | 166 | function privilege($specialbit) { |
167 | - return (substr($this->special_user, $specialbit,1)==1); |
|
167 | + return (substr($this->special_user, $specialbit, 1) == 1); |
|
168 | 168 | } |
169 | 169 | function update($clause) { |
170 | 170 | $db = BoincDb::get(); |
@@ -175,7 +175,7 @@ discard block |
||
175 | 175 | $db = BoincDb::get(); |
176 | 176 | return $db->delete_aux('forum_preferences', "userid=$this->userid"); |
177 | 177 | } |
178 | - static function enum($clause=null) { |
|
178 | + static function enum($clause = null) { |
|
179 | 179 | $db = BoincDb::get(); |
180 | 180 | return $db->enum('forum_preferences', 'BoincForumPrefs', $clause); |
181 | 181 | } |
@@ -215,8 +215,8 @@ discard block |
||
215 | 215 | // |
216 | 216 | $fl = BoincForumLogging::lookup(0, 0); |
217 | 217 | if ($fl) { |
218 | - if ($fl->timestamp<time()-MAX_FORUM_LOGGING_TIME){ |
|
219 | - BoincForumLogging::delete_aux("timestamp<'".(time()-MAX_FORUM_LOGGING_TIME)."' and userid != 0"); |
|
218 | + if ($fl->timestamp < time() - MAX_FORUM_LOGGING_TIME) { |
|
219 | + BoincForumLogging::delete_aux("timestamp<'".(time() - MAX_FORUM_LOGGING_TIME)."' and userid != 0"); |
|
220 | 220 | BoincForumLogging::replace(0, 0, time()); |
221 | 221 | } |
222 | 222 | } else { |
@@ -326,10 +326,10 @@ discard block |
||
326 | 326 | } |
327 | 327 | } |
328 | 328 | |
329 | -define ('NOTIFY_FRIEND_REQ', 1); |
|
330 | -define ('NOTIFY_FRIEND_ACCEPT', 2); |
|
331 | -define ('NOTIFY_PM', 3); |
|
332 | -define ('NOTIFY_SUBSCRIBED_THREAD', 4); |
|
333 | -define ('NOTIFY_SUBSCRIBED_FORUM', 5); |
|
329 | +define('NOTIFY_FRIEND_REQ', 1); |
|
330 | +define('NOTIFY_FRIEND_ACCEPT', 2); |
|
331 | +define('NOTIFY_PM', 3); |
|
332 | +define('NOTIFY_SUBSCRIBED_THREAD', 4); |
|
333 | +define('NOTIFY_SUBSCRIBED_FORUM', 5); |
|
334 | 334 | |
335 | 335 | ?> |
@@ -24,13 +24,13 @@ |
||
24 | 24 | function update_average($now, $work_start_time, $work, &$avg, &$avg_time) { |
25 | 25 | if ($avg_time) { |
26 | 26 | $diff = $now - $avg_time; |
27 | - if ($diff <0) $diff = 0; |
|
27 | + if ($diff < 0) $diff = 0; |
|
28 | 28 | $diff_days = $diff/86400; |
29 | 29 | $weight = exp(-$diff*M_LN2/CREDIT_HALF_LIFE); |
30 | 30 | $avg *= $weight; |
31 | 31 | |
32 | - if ((1.0-$weight)>0.000001) { |
|
33 | - $avg += (1.0-$weight)*($work/$diff_days); |
|
32 | + if ((1.0 - $weight) > 0.000001) { |
|
33 | + $avg += (1.0 - $weight)*($work/$diff_days); |
|
34 | 34 | } |
35 | 35 | else { |
36 | 36 | $avg += M_LN2*$work*86400/CREDIT_HALF_LIFE; |
@@ -31,8 +31,7 @@ |
||
31 | 31 | |
32 | 32 | if ((1.0-$weight)>0.000001) { |
33 | 33 | $avg += (1.0-$weight)*($work/$diff_days); |
34 | - } |
|
35 | - else { |
|
34 | + } else { |
|
36 | 35 | $avg += M_LN2*$work*86400/CREDIT_HALF_LIFE; |
37 | 36 | } |
38 | 37 | } else if ($work) { |
@@ -118,5 +118,5 @@ |
||
118 | 118 | "; |
119 | 119 | } |
120 | 120 | |
121 | -$cvs_version_tracker[]="\$Id$"; //Generated automatically - do not edit |
|
121 | +$cvs_version_tracker[] = "\$Id$"; //Generated automatically - do not edit |
|
122 | 122 | ?> |