@@ -39,8 +39,8 @@ discard block |
||
39 | 39 | |
40 | 40 | // Delete a user if they have no credit, results, or posts |
41 | 41 | // |
42 | -function possibly_delete_user($user){ |
|
43 | - if ($user->total_credit > 0.0){ |
|
42 | +function possibly_delete_user($user) { |
|
43 | + if ($user->total_credit > 0.0) { |
|
44 | 44 | admin_error_page("Cannot delete user: User has credit."); |
45 | 45 | } |
46 | 46 | |
@@ -56,7 +56,7 @@ discard block |
||
56 | 56 | admin_error_page("Cannot delete user: User has forum posts."); |
57 | 57 | } |
58 | 58 | |
59 | - if ($user->teamid){ |
|
59 | + if ($user->teamid) { |
|
60 | 60 | user_quit_team($user); |
61 | 61 | } |
62 | 62 | delete_user($user); |
@@ -67,8 +67,8 @@ discard block |
||
67 | 67 | function handle_special_user($user) { |
68 | 68 | global $special_user_bitfield; |
69 | 69 | $Nbf = sizeof($special_user_bitfield); |
70 | - $bits=""; |
|
71 | - for ($i=0; $i<$Nbf; $i++) { |
|
70 | + $bits = ""; |
|
71 | + for ($i = 0; $i < $Nbf; $i++) { |
|
72 | 72 | $key = "special_user_$i"; |
73 | 73 | if (array_key_exists($key, $_POST) && $_POST[$key]) { |
74 | 74 | $bits .= "1"; |
@@ -94,35 +94,35 @@ discard block |
||
94 | 94 | ); |
95 | 95 | } else { |
96 | 96 | if (is_numeric($dt)) { |
97 | - $t = $dt>0 ? time()+$dt : 0; |
|
97 | + $t = $dt > 0 ? time() + $dt : 0; |
|
98 | 98 | $q = "UPDATE forum_preferences SET banished_until=$t WHERE userid=$user->id"; |
99 | 99 | _mysql_query($q); |
100 | 100 | |
101 | 101 | // put a timestamp in wiki to trigger re-validation of credentials |
102 | 102 | |
103 | - if (function_exists('touch_wiki_user')){ |
|
103 | + if (function_exists('touch_wiki_user')) { |
|
104 | 104 | touch_wiki_user($user); |
105 | 105 | } |
106 | 106 | |
107 | 107 | // Send suspension e-mail to user and administrators |
108 | 108 | |
109 | - if ($dt>0) { |
|
110 | - $subject = PROJECT." posting privileges suspended for ". $user->name; |
|
109 | + if ($dt > 0) { |
|
110 | + $subject = PROJECT." posting privileges suspended for ".$user->name; |
|
111 | 111 | $body = " |
112 | -Forum posting privileges for the " .PROJECT. " user \"".$user->name."\" |
|
113 | -have been suspended for " .time_diff($dt). " by ".$g_logged_in_user->name.". |
|
112 | +Forum posting privileges for the " .PROJECT." user \"".$user->name."\" |
|
113 | +have been suspended for " .time_diff($dt)." by ".$g_logged_in_user->name.". |
|
114 | 114 | The reason given was: |
115 | 115 | |
116 | 116 | $reason |
117 | 117 | |
118 | -The suspension will end at " .time_str($t)."\n"; |
|
118 | +The suspension will end at ".time_str($t)."\n"; |
|
119 | 119 | } else { |
120 | - $subject = PROJECT." user ". $user->name. " unsuspended"; |
|
120 | + $subject = PROJECT." user ".$user->name." unsuspended"; |
|
121 | 121 | $body = " |
122 | -Forum posting privileges for the " .PROJECT. " user \"".$user->name."\" |
|
122 | +Forum posting privileges for the " .PROJECT." user \"".$user->name."\" |
|
123 | 123 | have been restored by ".$g_logged_in_user->name."\n"; |
124 | 124 | if ($reason) { |
125 | - $body.="The reason given was:\n\n $reason\n"; |
|
125 | + $body .= "The reason given was:\n\n $reason\n"; |
|
126 | 126 | } |
127 | 127 | } |
128 | 128 | |
@@ -186,13 +186,13 @@ discard block |
||
186 | 186 | row1("Special User Status"); |
187 | 187 | |
188 | 188 | echo "<tr>\n"; |
189 | - for ($i=0; $i<$Nbf; $i++) { |
|
189 | + for ($i = 0; $i < $Nbf; $i++) { |
|
190 | 190 | $bit = substr($user->prefs->special_user, $i, 1); |
191 | 191 | echo "<tr><td><input type='checkbox'' name='special_user_".$i."' value='1'"; |
192 | 192 | if ($bit == 1) { |
193 | 193 | echo " checked='checked'"; |
194 | 194 | } |
195 | - echo ">". $special_user_bitfield[$i] ."</td></tr>\n"; |
|
195 | + echo ">".$special_user_bitfield[$i]."</td></tr>\n"; |
|
196 | 196 | } |
197 | 197 | echo "</tr>"; |
198 | 198 | |
@@ -217,10 +217,10 @@ discard block |
||
217 | 217 | if ($user->prefs->banished_until) { |
218 | 218 | $dt = $user->prefs->banished_until - time(); |
219 | 219 | if ($dt > 0) { |
220 | - $x = " Suspended until " . time_str($user->prefs->banished_until) |
|
221 | - ."<br/> (Expires in " . time_diff($dt) .")" ; |
|
220 | + $x = " Suspended until ".time_str($user->prefs->banished_until) |
|
221 | + ."<br/> (Expires in ".time_diff($dt).")"; |
|
222 | 222 | } else { |
223 | - $x = " last suspended " . time_str($user->prefs->banished_until); |
|
223 | + $x = " last suspended ".time_str($user->prefs->banished_until); |
|
224 | 224 | } |
225 | 225 | row1($x); |
226 | 226 | } else { |
@@ -238,11 +238,11 @@ discard block |
||
238 | 238 | "; |
239 | 239 | echo " |
240 | 240 | <input type='radio' name='suspend_for' value='172800'> 48 hours <br/> |
241 | - <input type='radio' name='suspend_for' value='",86400*7,"'> 1 week <br/> |
|
242 | - <input type='radio' name='suspend_for' value='",86400*14,"'> 2 weeks <br/> |
|
241 | + <input type='radio' name='suspend_for' value='",86400*7, "'> 1 week <br/> |
|
242 | + <input type='radio' name='suspend_for' value='",86400*14, "'> 2 weeks <br/> |
|
243 | 243 | "; |
244 | 244 | |
245 | - if ($dt>0) { |
|
245 | + if ($dt > 0) { |
|
246 | 246 | echo " |
247 | 247 | <input type='radio' name='suspend_for' value='-1'> <b>unsuspend</b> <br/>"; |
248 | 248 | } |
@@ -306,6 +306,6 @@ discard block |
||
306 | 306 | |
307 | 307 | show_manage_user_form($user); |
308 | 308 | |
309 | -$cvs_version_tracker[]= //Generated automatically - do not edit |
|
309 | +$cvs_version_tracker[] = //Generated automatically - do not edit |
|
310 | 310 | "\$Id$"; |
311 | 311 | ?> |
@@ -274,7 +274,7 @@ discard block |
||
274 | 274 | do_query("alter table host add max_results_day integer not null"); |
275 | 275 | } |
276 | 276 | |
277 | -function update_4_20_2005(){ |
|
277 | +function update_4_20_2005() { |
|
278 | 278 | do_query("ALTER TABLE `thread` ADD `sticky` TINYINT UNSIGNED DEFAULT '0' NOT NULL"); |
279 | 279 | do_query("ALTER TABLE `forum` ADD `post_min_total_credit` INT NOT NULL AFTER `posts`"); |
280 | 280 | do_query("ALTER TABLE `forum` ADD `post_min_expavg_credit` INT NOT NULL AFTER `posts`"); |
@@ -284,7 +284,7 @@ discard block |
||
284 | 284 | do_query("ALTER TABLE `forum_preferences` ADD `last_post` INT( 14 ) UNSIGNED NOT NULL AFTER `posts`"); |
285 | 285 | } |
286 | 286 | |
287 | -function update_4_30_2005(){ |
|
287 | +function update_4_30_2005() { |
|
288 | 288 | do_query("ALTER TABLE `forum_preferences` ADD `ignore_sticky_posts` TINYINT( 1 ) UNSIGNED NOT NULL"); |
289 | 289 | } |
290 | 290 | |
@@ -311,7 +311,7 @@ discard block |
||
311 | 311 | do_query("update user set country='Macedonia' where country='Macedonia, The Former Yugoslav Republic of'"); |
312 | 312 | } |
313 | 313 | |
314 | -function update_11_24_2005(){ |
|
314 | +function update_11_24_2005() { |
|
315 | 315 | do_query("ALTER TABLE `forum_preferences` ADD `minimum_wrap_postcount` INT DEFAULT '100' NOT NULL AFTER `high_rating_threshold` , |
316 | 316 | ADD `display_wrap_postcount` INT DEFAULT '75' NOT NULL AFTER `minimum_wrap_postcount`"); |
317 | 317 | } |
@@ -616,7 +616,7 @@ discard block |
||
616 | 616 | "); |
617 | 617 | } |
618 | 618 | |
619 | -function update_10_05_2008(){ |
|
619 | +function update_10_05_2008() { |
|
620 | 620 | do_query("alter table forum_preferences add highlight_special tinyint default '1' not null"); |
621 | 621 | } |
622 | 622 | |
@@ -1045,7 +1045,7 @@ discard block |
||
1045 | 1045 | // This used to be the Subversion version#, |
1046 | 1046 | // but with Git we just use sequential integers |
1047 | 1047 | // |
1048 | -$db_updates = array ( |
|
1048 | +$db_updates = array( |
|
1049 | 1049 | array(18490, "update_6_16_2009"), |
1050 | 1050 | array(19001, "update_9_3_2009"), |
1051 | 1051 | array(20807, "update_3_5_2010"), |
@@ -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 | } |
@@ -29,5 +29,5 @@ |
||
29 | 29 | echo "Host RPC time cleared for host ID: $hostid\n"; |
30 | 30 | |
31 | 31 | admin_page_tail(); |
32 | -$cvs_version_tracker[]="\$Id$"; //Generated automatically - do not edit |
|
32 | +$cvs_version_tracker[] = "\$Id$"; //Generated automatically - do not edit |
|
33 | 33 | ?> |
@@ -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"); |
@@ -26,25 +26,25 @@ |
||
26 | 26 | row_array(array("Name", "Engine", "Version", "Row Format", "Rows", "Avg Row Length (KB)", "Data Length (MB)", "Max Data Length (MB)", "Index Length (MB)", "Data free (MB)", "Create Time", "Update Time", "Check Time", "Create Options", "Comment")); |
27 | 27 | _mysql_select_db($db); |
28 | 28 | $result = _mysql_query("show table status"); |
29 | - while($row = _mysql_fetch_array($result)) { |
|
29 | + while ($row = _mysql_fetch_array($result)) { |
|
30 | 30 | $size += ($row["Data_length"] + $row["Index_length"]); |
31 | 31 | $engine = $row["Engine"]; |
32 | 32 | if (!$engine) $engine = $row["Type"]; |
33 | 33 | row_array(array( |
34 | 34 | $row["Name"], |
35 | 35 | $engine, |
36 | - $row["Version"] , |
|
37 | - $row["Row_format"] , |
|
38 | - $row["Rows"] , |
|
39 | - round($row["Avg_row_length"]/1024,2) , |
|
40 | - round($row["Data_length"]/(1024*1024),2) , |
|
41 | - round($row["Max_data_length"]/(1024*1024),2) , |
|
42 | - round($row["Index_length"]/(1024*1024),2) , |
|
43 | - round($row["Data_free"]/(1024*1024),2) , |
|
44 | - $row["Create_time"] , |
|
45 | - $row["Update_time"] , |
|
46 | - $row["Check_time"] , |
|
47 | - $row["Create_options"] , |
|
36 | + $row["Version"], |
|
37 | + $row["Row_format"], |
|
38 | + $row["Rows"], |
|
39 | + round($row["Avg_row_length"]/1024, 2), |
|
40 | + round($row["Data_length"]/(1024*1024), 2), |
|
41 | + round($row["Max_data_length"]/(1024*1024), 2), |
|
42 | + round($row["Index_length"]/(1024*1024), 2), |
|
43 | + round($row["Data_free"]/(1024*1024), 2), |
|
44 | + $row["Create_time"], |
|
45 | + $row["Update_time"], |
|
46 | + $row["Check_time"], |
|
47 | + $row["Create_options"], |
|
48 | 48 | $row["Comment"] |
49 | 49 | )); |
50 | 50 | } |
@@ -122,9 +122,9 @@ |
||
122 | 122 | <input type=hidden name=xset_name value=\"$xset_name\"> |
123 | 123 | <table width=600><tr><td> |
124 | 124 | "; |
125 | - filter_form($filter?$filter->name():"", $filter_cat); |
|
125 | + filter_form($filter ? $filter->name() : "", $filter_cat); |
|
126 | 126 | echo "</td><td>"; |
127 | - breakdown_form($breakdown?$breakdown->name():""); |
|
127 | + breakdown_form($breakdown ? $breakdown->name() : ""); |
|
128 | 128 | echo " |
129 | 129 | </td></tr></table> |
130 | 130 | <p> |
@@ -55,7 +55,7 @@ |
||
55 | 55 | exit("Usage: bossa_example4_make_jobs.php --dir d\n"); |
56 | 56 | } |
57 | 57 | |
58 | -for ($i=1; $i<$argc; $i++) { |
|
58 | +for ($i = 1; $i < $argc; $i++) { |
|
59 | 59 | if ($argv[$i] == '--dir') $dir = $argv[++$i]; |
60 | 60 | else usage(); |
61 | 61 | } |
@@ -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"); |