@@ -76,7 +76,7 @@ discard block |
||
76 | 76 | if ($format == 'xml') { |
77 | 77 | echo "<teams>\n"; |
78 | 78 | $total = 0; |
79 | - foreach($teams as $team) { |
|
79 | + foreach ($teams as $team) { |
|
80 | 80 | show_team_xml($team); |
81 | 81 | $total++; |
82 | 82 | if ($total == 100) break; |
@@ -91,13 +91,13 @@ discard block |
||
91 | 91 | echo "<p>"; |
92 | 92 | echo tra("You may view these teams' members, statistics, and information."); |
93 | 93 | echo "<ul>"; |
94 | - foreach($teams as $team) { |
|
94 | + foreach ($teams as $team) { |
|
95 | 95 | echo "<li>"; |
96 | 96 | echo "<a href=team_display.php?teamid=$team->id>"; |
97 | 97 | echo "$team->name</a></li>"; |
98 | 98 | } |
99 | 99 | echo "</ul>"; |
100 | - if (count($teams)==100) { |
|
100 | + if (count($teams) == 100) { |
|
101 | 101 | echo |
102 | 102 | tra("More than 100 teams match your search. The first 100 are shown.") |
103 | 103 | ."<br> |
@@ -47,13 +47,13 @@ discard block |
||
47 | 47 | start_table(); |
48 | 48 | row1(tra("Banishment Vote")); |
49 | 49 | |
50 | -if (get_str('action')=="start") { |
|
50 | +if (get_str('action') == "start") { |
|
51 | 51 | if (!$user) { |
52 | 52 | error_page(tra("No user with this ID found.")); |
53 | 53 | } |
54 | 54 | BoincForumPrefs::lookup($user); |
55 | 55 | $x = $user->prefs->banished_until; |
56 | - if ($x>time()) { |
|
56 | + if ($x > time()) { |
|
57 | 57 | error_page(tra("User is already banished")); |
58 | 58 | } |
59 | 59 | //display input that selects reason |
@@ -77,10 +77,10 @@ discard block |
||
77 | 77 | "", |
78 | 78 | "<input class=\"btn btn-default\" type=\"submit\" name=\"submit\" value=\"".tra("Proceed with vote")."\">" |
79 | 79 | ); |
80 | -} elseif (get_str('action')=="yes") { |
|
81 | - vote_yes($config,$logged_in_user,$user); |
|
82 | -} elseif (get_str('action')=="no") { |
|
83 | - vote_no($config,$logged_in_user,$user); |
|
80 | +} elseif (get_str('action') == "yes") { |
|
81 | + vote_yes($config, $logged_in_user, $user); |
|
82 | +} elseif (get_str('action') == "no") { |
|
83 | + vote_no($config, $logged_in_user, $user); |
|
84 | 84 | } else { |
85 | 85 | error_page("Unknown action"); |
86 | 86 | } |
@@ -30,8 +30,8 @@ discard block |
||
30 | 30 | // post back to PayPal system to validate |
31 | 31 | $header .= "POST /cgi-bin/webscr HTTP/1.0\r\n"; |
32 | 32 | $header .= "Content-Type: application/x-www-form-urlencoded\r\n"; |
33 | -$header .= "Content-Length: " . strlen($req) . "\r\n\r\n"; |
|
34 | -$fp = fsockopen ('www.paypal.com', 80, $errno, $errstr, 30); |
|
33 | +$header .= "Content-Length: ".strlen($req)."\r\n\r\n"; |
|
34 | +$fp = fsockopen('www.paypal.com', 80, $errno, $errstr, 30); |
|
35 | 35 | |
36 | 36 | // assign posted variables to local variables |
37 | 37 | $item_name = $_POST['item_name']; |
@@ -50,11 +50,11 @@ discard block |
||
50 | 50 | if (!$fp) { |
51 | 51 | // HTTP ERROR, might want to do additional handling here |
52 | 52 | } else { |
53 | - fputs ($fp, $header . $req); |
|
53 | + fputs($fp, $header.$req); |
|
54 | 54 | while (!feof($fp)) { |
55 | - $res = fgets ($fp, 1024); |
|
56 | - if (strcmp ($res, "VERIFIED") == 0) { |
|
57 | - $item_array = explode("_",$item_number); |
|
55 | + $res = fgets($fp, 1024); |
|
56 | + if (strcmp($res, "VERIFIED") == 0) { |
|
57 | + $item_array = explode("_", $item_number); |
|
58 | 58 | $payment_id = abs($item_array[0]); |
59 | 59 | $order_time = abs($item_array[1]); |
60 | 60 | $result = _mysql_query("SELECT * FROM donation_paypal WHERE order_time = '$order_time' AND id = '$payment_id' AND processed = '0'"); |
@@ -69,7 +69,7 @@ discard block |
||
69 | 69 | } |
70 | 70 | } |
71 | 71 | } |
72 | - fclose ($fp); |
|
72 | + fclose($fp); |
|
73 | 73 | } |
74 | 74 | |
75 | 75 | ?> |
@@ -22,7 +22,7 @@ |
||
22 | 22 | $languages = get_supported_languages(); |
23 | 23 | $lang = sanitize_tags(get_str("lang", true)); |
24 | 24 | |
25 | -if (!in_array($lang, $languages) && $lang!="auto" && $lang!="en") { |
|
25 | +if (!in_array($lang, $languages) && $lang != "auto" && $lang != "en") { |
|
26 | 26 | echo "Language $lang is not supported"; |
27 | 27 | } else { |
28 | 28 | send_cookie('lang', $lang, true); |
@@ -37,11 +37,11 @@ discard block |
||
37 | 37 | $userid = get_int("userid", true); |
38 | 38 | $offset = get_int("offset", true); |
39 | 39 | $appid = get_int("appid", true); |
40 | -if (!$offset) $offset=0; |
|
40 | +if (!$offset) $offset = 0; |
|
41 | 41 | $state = get_int("state", true); |
42 | -if (!$state) $state=0; |
|
42 | +if (!$state) $state = 0; |
|
43 | 43 | $show_names = get_int("show_names", true); |
44 | -if (!$show_names) $show_names=0; |
|
44 | +if (!$show_names) $show_names = 0; |
|
45 | 45 | |
46 | 46 | $s = $state_name[$state]; |
47 | 47 | if ($appid) { |
@@ -57,7 +57,7 @@ discard block |
||
57 | 57 | $clause = "hostid=$hostid"; |
58 | 58 | page_head(tra("$s tasks for computer %1", $host->id)); |
59 | 59 | $show_host_link = false; |
60 | -} else if ($userid){ |
|
60 | +} else if ($userid) { |
|
61 | 61 | $user = get_logged_in_user(); |
62 | 62 | if ($userid != $user->id) { |
63 | 63 | error_page(tra("No access")); |
@@ -69,7 +69,7 @@ discard block |
||
69 | 69 | error_page(tra("Missing user ID or host ID")); |
70 | 70 | } |
71 | 71 | |
72 | -$clause2 = $clause. $state_clause[$state]; |
|
72 | +$clause2 = $clause.$state_clause[$state]; |
|
73 | 73 | if ($appid) { |
74 | 74 | $clause2 .= ' AND appid='.$appid; |
75 | 75 | } |
@@ -79,7 +79,7 @@ discard block |
||
79 | 79 | } else { |
80 | 80 | $order_clause = "order by sent_time desc"; |
81 | 81 | } |
82 | -$query = "$clause2 $order_clause limit $offset,".($results_per_page+1); |
|
82 | +$query = "$clause2 $order_clause limit $offset,".($results_per_page + 1); |
|
83 | 83 | $results = BoincResult::enum($query); |
84 | 84 | |
85 | 85 | $info = new StdClass; |
@@ -112,10 +112,10 @@ discard block |
||
112 | 112 | $apps = BoincApp::enum("deprecated=0"); |
113 | 113 | foreach ($apps as $app) { |
114 | 114 | $us = BoincUserSubmitApp::lookup("user_id=$user_id and app_id=$app->id"); |
115 | - $checked = $us?"checked":""; |
|
115 | + $checked = $us ? "checked" : ""; |
|
116 | 116 | echo "<br> <input type=checkbox name=app_$app->id $checked> $app->name\n"; |
117 | 117 | } |
118 | - $q = (string) $usub->quota; |
|
118 | + $q = (string)$usub->quota; |
|
119 | 119 | $mj = $usub->max_jobs_in_progress; |
120 | 120 | echo " |
121 | 121 | <p> |
@@ -151,11 +151,11 @@ discard block |
||
151 | 151 | } |
152 | 152 | } |
153 | 153 | } |
154 | - $quota = (double) get_str('quota'); |
|
154 | + $quota = (double)get_str('quota'); |
|
155 | 155 | if ($quota != $us->quota) { |
156 | 156 | $us->update("quota=$quota"); |
157 | 157 | } |
158 | - $mj = (int) get_str('max_jobs_in_progress'); |
|
158 | + $mj = (int)get_str('max_jobs_in_progress'); |
|
159 | 159 | if ($mj != $us->max_jobs_in_progress) { |
160 | 160 | $us->update("max_jobs_in_progress=$mj"); |
161 | 161 | } |
@@ -82,7 +82,7 @@ |
||
82 | 82 | echo "<rpc_response>\n"; |
83 | 83 | echo "<count>$count</count>\n"; |
84 | 84 | echo "<threads>\n"; |
85 | - foreach($threads as $thread) { |
|
85 | + foreach ($threads as $thread) { |
|
86 | 86 | echo "<thread>\n"; |
87 | 87 | echo " <id>$thread->id</id>\n"; |
88 | 88 | echo " <forumid>$thread->forum</forumid>\n"; |
@@ -27,7 +27,7 @@ discard block |
||
27 | 27 | |
28 | 28 | $userid = get_int("userid"); |
29 | 29 | $offset = get_int("offset", true); |
30 | -if (!$offset) $offset=0; |
|
30 | +if (!$offset) $offset = 0; |
|
31 | 31 | $items_per_page = 20; |
32 | 32 | |
33 | 33 | $user = BoincUser::lookup_id($userid); |
@@ -112,7 +112,7 @@ discard block |
||
112 | 112 | break; |
113 | 113 | } |
114 | 114 | if ($n >= $offset) { |
115 | - show_post_and_context($post, $thread, $forum, $options, $n+1); |
|
115 | + show_post_and_context($post, $thread, $forum, $options, $n + 1); |
|
116 | 116 | } |
117 | 117 | $n++; |
118 | 118 | } |
@@ -48,7 +48,7 @@ |
||
48 | 48 | |
49 | 49 | $users = BoincUser::enum("teamid=$team->id"); |
50 | 50 | $ninactive_users = 0; |
51 | -foreach($users as $user) { |
|
51 | +foreach ($users as $user) { |
|
52 | 52 | if ($user->id == $logged_in_user->id) continue; |
53 | 53 | if ($user->id == $team->userid) continue; |
54 | 54 | $user_total_credit = format_credit($user->total_credit); |