@@ -27,7 +27,7 @@ discard block |
||
| 27 | 27 | $subset = sanitize_tags(get_str("subset")); |
| 28 | 28 | $venue = sanitize_tags(get_str("venue", true)); |
| 29 | 29 | $columns = get_str("cols", true); |
| 30 | -$c = $columns?"&cols=$columns":""; |
|
| 30 | +$c = $columns ? "&cols=$columns" : ""; |
|
| 31 | 31 | check_subset($subset); |
| 32 | 32 | |
| 33 | 33 | if ($action) { |
@@ -112,5 +112,5 @@ discard block |
||
| 112 | 112 | echo "<a href=prefs.php?subset=$subset$c>".tra("Back to preferences")."</a>\n"; |
| 113 | 113 | page_tail(); |
| 114 | 114 | |
| 115 | -$cvs_version_tracker[]="\$Id$"; //Generated automatically - do not edit |
|
| 115 | +$cvs_version_tracker[] = "\$Id$"; //Generated automatically - do not edit |
|
| 116 | 116 | ?> |
@@ -28,10 +28,10 @@ |
||
| 28 | 28 | // |
| 29 | 29 | function show_platforms() { |
| 30 | 30 | $xmlFragment = unserialize(get_cached_data(3600, "project_config_platform_xml")); |
| 31 | - if ($xmlFragment==false){ |
|
| 31 | + if ($xmlFragment == false) { |
|
| 32 | 32 | $platforms = BoincDB::get()->enum_fields("platform, DBNAME.app_version, DBNAME.app", "BoincPlatform", "platform.name, platform.user_friendly_name, plan_class", "app_version.platformid = platform.id and app_version.appid = app.id and app_version.deprecated=0 and app.deprecated=0 group by platform.name, plan_class", ""); |
| 33 | 33 | $xmlFragment = " <platforms>"; |
| 34 | - foreach ($platforms as $platform){ |
|
| 34 | + foreach ($platforms as $platform) { |
|
| 35 | 35 | $xmlFragment .= " |
| 36 | 36 | <platform> |
| 37 | 37 | <platform_name>$platform->name</platform_name> |
@@ -58,7 +58,7 @@ |
||
| 58 | 58 | $ndays = get_int('ndays', true); |
| 59 | 59 | $threads_only = get_str('threads_only', true); |
| 60 | 60 | |
| 61 | -if(!$ndays || $ndays < 1) { |
|
| 61 | +if (!$ndays || $ndays < 1) { |
|
| 62 | 62 | $ndays = 30; |
| 63 | 63 | } |
| 64 | 64 | |
@@ -28,7 +28,7 @@ discard block |
||
| 28 | 28 | if (!$users_per_page) { |
| 29 | 29 | $users_per_page = 20; |
| 30 | 30 | } |
| 31 | -define ('ITEM_LIMIT', 10000); |
|
| 31 | +define('ITEM_LIMIT', 10000); |
|
| 32 | 32 | |
| 33 | 33 | function get_top_participants($offset, $sort_by) { |
| 34 | 34 | global $users_per_page; |
@@ -67,7 +67,7 @@ discard block |
||
| 67 | 67 | <td align=right>", format_credit_large($user->expavg_credit), "</td> |
| 68 | 68 | <td align=right>", format_credit_large($user->total_credit), "</td> |
| 69 | 69 | <td>", $user->country, "</td> |
| 70 | - <td>", time_str($user->create_time),"</td> |
|
| 70 | + <td>", time_str($user->create_time), "</td> |
|
| 71 | 71 | </tr> |
| 72 | 72 | "; |
| 73 | 73 | } |
@@ -82,16 +82,16 @@ discard block |
||
| 82 | 82 | } |
| 83 | 83 | |
| 84 | 84 | $offset = get_int("offset", true); |
| 85 | -if (!$offset) $offset=0; |
|
| 86 | -if ($offset % $users_per_page) $offset = 0; |
|
| 85 | +if (!$offset) $offset = 0; |
|
| 86 | +if ($offset%$users_per_page) $offset = 0; |
|
| 87 | 87 | |
| 88 | 88 | if ($offset < ITEM_LIMIT) { |
| 89 | 89 | $cache_args = "sort_by=$sort_by&offset=$offset"; |
| 90 | - $cacheddata = get_cached_data(TOP_PAGES_TTL,$cache_args); |
|
| 90 | + $cacheddata = get_cached_data(TOP_PAGES_TTL, $cache_args); |
|
| 91 | 91 | |
| 92 | 92 | // Do we have the data in cache? |
| 93 | 93 | // |
| 94 | - if ($cacheddata){ |
|
| 94 | + if ($cacheddata) { |
|
| 95 | 95 | $data = unserialize($cacheddata); // use the cached data |
| 96 | 96 | } else { |
| 97 | 97 | //if not do queries etc to generate new data |
@@ -99,7 +99,7 @@ discard block |
||
| 99 | 99 | |
| 100 | 100 | //save data in cache |
| 101 | 101 | // |
| 102 | - set_cached_data(TOP_PAGES_TTL, serialize($data),$cache_args); |
|
| 102 | + set_cached_data(TOP_PAGES_TTL, serialize($data), $cache_args); |
|
| 103 | 103 | } |
| 104 | 104 | } else { |
| 105 | 105 | error_page(tra("Limit exceeded - Sorry, first %1 items only", ITEM_LIMIT)); |
@@ -122,7 +122,7 @@ discard block |
||
| 122 | 122 | echo "<a href=top_users.php?sort_by=$sort_by&offset=$new_offset>".tra("Previous %1", $users_per_page)."</a> · "; |
| 123 | 123 | |
| 124 | 124 | } |
| 125 | -if ($n==$users_per_page){ //If we aren't on the last page |
|
| 125 | +if ($n == $users_per_page) { //If we aren't on the last page |
|
| 126 | 126 | $new_offset = $offset + $users_per_page; |
| 127 | 127 | echo "<a href=top_users.php?sort_by=$sort_by&offset=$new_offset>".tra("Next %1", $users_per_page)."</a>"; |
| 128 | 128 | } |
@@ -26,13 +26,13 @@ |
||
| 26 | 26 | |
| 27 | 27 | if (isset($_GET["sort_by"])) { |
| 28 | 28 | $sort_by = $_GET["sort_by"]; |
| 29 | - $sort_by = strip_tags($sort_by); // remove XSS nonsense |
|
| 29 | + $sort_by = strip_tags($sort_by); // remove XSS nonsense |
|
| 30 | 30 | } else { |
| 31 | 31 | $sort_by = "expavg_credit"; |
| 32 | 32 | } |
| 33 | 33 | |
| 34 | 34 | $offset = get_int("offset", true); |
| 35 | -if (!$offset) $offset=0; |
|
| 35 | +if (!$offset) $offset = 0; |
|
| 36 | 36 | |
| 37 | 37 | if ($offset > 1000) { |
| 38 | 38 | error_page(tra("Limit exceeded: Can only display the first 1000 members.")); |
@@ -49,7 +49,7 @@ |
||
| 49 | 49 | table_header("platform", "plan class", "version#", "deprecated"); |
| 50 | 50 | foreach ($avs as $av) { |
| 51 | 51 | $platform = BoincPlatform::lookup_id($av->platformid); |
| 52 | - $c = $av->deprecated?"checked":""; |
|
| 52 | + $c = $av->deprecated ? "checked" : ""; |
|
| 53 | 53 | echo " |
| 54 | 54 | <tr> |
| 55 | 55 | <td>$platform->name</td> |
@@ -32,7 +32,7 @@ discard block |
||
| 32 | 32 | $search_string = sanitize_tags($search_string); |
| 33 | 33 | $search_string = BoincDb::escape_string($search_string); |
| 34 | 34 | $offset = get_int('offset', true); |
| 35 | -if (!$offset) $offset=0; |
|
| 35 | +if (!$offset) $offset = 0; |
|
| 36 | 36 | $count = 10; |
| 37 | 37 | |
| 38 | 38 | page_head(tra("Profiles containing '%1'", $search_string)); |
@@ -46,17 +46,17 @@ discard block |
||
| 46 | 46 | <th>".tra("Recent credit")."</th></tr> |
| 47 | 47 | "; |
| 48 | 48 | $n = 0; |
| 49 | -foreach($profiles as $profile) { |
|
| 50 | - show_profile_link2($profile, $n+$offset+1); |
|
| 49 | +foreach ($profiles as $profile) { |
|
| 50 | + show_profile_link2($profile, $n + $offset + 1); |
|
| 51 | 51 | $n += 1; |
| 52 | 52 | } |
| 53 | 53 | end_table(); |
| 54 | 54 | |
| 55 | -if ($offset==0 && $n==0) { |
|
| 55 | +if ($offset == 0 && $n == 0) { |
|
| 56 | 56 | echo tra("No profiles found containing '%1'", $search_string); |
| 57 | 57 | } |
| 58 | 58 | |
| 59 | -if ($n==$count) { |
|
| 59 | +if ($n == $count) { |
|
| 60 | 60 | $s = urlencode($search_string); |
| 61 | 61 | $offset += $count; |
| 62 | 62 | echo " |
@@ -32,7 +32,7 @@ |
||
| 32 | 32 | |
| 33 | 33 | page_head(tra("Removing users from %1", $team->name)); |
| 34 | 34 | $ndel = 0; |
| 35 | -for ($i=0; $i<$_POST["ninactive_users"]; $i++) { |
|
| 35 | +for ($i = 0; $i < $_POST["ninactive_users"]; $i++) { |
|
| 36 | 36 | $userid = post_int("remove_$i", true); |
| 37 | 37 | if (!$userid) continue; |
| 38 | 38 | $user = BoincUser::lookup_id($userid); |
@@ -35,14 +35,14 @@ |
||
| 35 | 35 | } |
| 36 | 36 | |
| 37 | 37 | $owner = BoincUser::lookup_id($thread->owner); |
| 38 | -if ($logged_in_user->id == $owner->id){ |
|
| 38 | +if ($logged_in_user->id == $owner->id) { |
|
| 39 | 39 | $action = get_str("action"); |
| 40 | 40 | if ($action == "set") { |
| 41 | 41 | $ret = $thread->update("status=1"); |
| 42 | 42 | } else { |
| 43 | 43 | $ret = $thread->update("status=0"); |
| 44 | 44 | } |
| 45 | - if (!$ret){ |
|
| 45 | + if (!$ret) { |
|
| 46 | 46 | error_page("Could not update the status of the thread: ".$thread->id); |
| 47 | 47 | } |
| 48 | 48 | } else { |