@@ -32,7 +32,7 @@ discard block |
||
| 32 | 32 | // |
| 33 | 33 | function get_pct_badges($badge_name_prefix, $badge_pctiles, $badge_images) { |
| 34 | 34 | $badges = array(); |
| 35 | - for ($i=0; $i<3; $i++) { |
|
| 35 | + for ($i = 0; $i < 3; $i++) { |
|
| 36 | 36 | $badges[$i] = get_badge($badge_name_prefix."_".$i, "Top ".$badge_pctiles[$i]."% in average credit", $badge_images[$i]); |
| 37 | 37 | } |
| 38 | 38 | return $badges; |
@@ -42,11 +42,11 @@ discard block |
||
| 42 | 42 | // |
| 43 | 43 | function get_percentiles($is_user, $badge_pctiles) { |
| 44 | 44 | $percentiles = array(); |
| 45 | - for ($i=0; $i<3; $i++) { |
|
| 45 | + for ($i = 0; $i < 3; $i++) { |
|
| 46 | 46 | if ($is_user) { |
| 47 | - $percentiles[$i] = BoincUser::percentile("expavg_credit", "expavg_credit>1", 100-$badge_pctiles[$i]); |
|
| 47 | + $percentiles[$i] = BoincUser::percentile("expavg_credit", "expavg_credit>1", 100 - $badge_pctiles[$i]); |
|
| 48 | 48 | } else { |
| 49 | - $percentiles[$i] = BoincTeam::percentile("expavg_credit", "expavg_credit>1", 100-$badge_pctiles[$i]); |
|
| 49 | + $percentiles[$i] = BoincTeam::percentile("expavg_credit", "expavg_credit>1", 100 - $badge_pctiles[$i]); |
|
| 50 | 50 | } |
| 51 | 51 | if ($percentiles[$i] === false) { |
| 52 | 52 | die("Can't get percentiles\n"); |
@@ -59,7 +59,7 @@ discard block |
||
| 59 | 59 | // Unassign other badges. |
| 60 | 60 | // |
| 61 | 61 | function assign_pct_badge($is_user, $item, $percentiles, $badges) { |
| 62 | - for ($i=0; $i<3; $i++) { |
|
| 62 | + for ($i = 0; $i < 3; $i++) { |
|
| 63 | 63 | if ($item->expavg_credit >= $percentiles[$i]) { |
| 64 | 64 | assign_badge($is_user, $item, $badges[$i]); |
| 65 | 65 | unassign_badges($is_user, $item, $badges, $i); |
@@ -73,13 +73,13 @@ discard block |
||
| 73 | 73 | // and assign/unassign RAC badges |
| 74 | 74 | // |
| 75 | 75 | function assign_badges($is_user, $badge_pctiles, $badge_images) { |
| 76 | - $kind = $is_user?"user":"team"; |
|
| 76 | + $kind = $is_user ? "user" : "team"; |
|
| 77 | 77 | $badges = get_pct_badges($kind."_pct", $badge_pctiles, $badge_images); |
| 78 | 78 | $pctiles = get_percentiles($is_user, $badge_pctiles); |
| 79 | 79 | //echo "thresholds for $kind badges: $pctiles[0] $pctiles[1] $pctiles[2]\n"; |
| 80 | 80 | |
| 81 | 81 | $n = 0; |
| 82 | - $maxid = $is_user?BoincUser::max("id"):BoincTeam::max("id"); |
|
| 82 | + $maxid = $is_user ?BoincUser::max("id") : BoincTeam::max("id"); |
|
| 83 | 83 | while ($n <= $maxid) { |
| 84 | 84 | $m = $n + 1000; |
| 85 | 85 | if ($is_user) { |
@@ -77,7 +77,7 @@ discard block |
||
| 77 | 77 | ) { |
| 78 | 78 | $badges = array(); |
| 79 | 79 | $limit = count($badge_level_names); |
| 80 | - for ($i=0; $i < $limit; $i++) { |
|
| 80 | + for ($i = 0; $i < $limit; $i++) { |
|
| 81 | 81 | $badges[$i] = get_badge($badge_name_prefix."_".$sub_project["short_name"]."_".$i, "$badge_level_names[$i] in ".$sub_project["name"]." credit", $sub_project["short_name"].$badge_images[$i]); |
| 82 | 82 | } |
| 83 | 83 | return $badges; |
@@ -90,7 +90,7 @@ discard block |
||
| 90 | 90 | // count from highest to lowest level, so the user get's assigned the |
| 91 | 91 | // highest possible level and the lower levels get removed |
| 92 | 92 | // |
| 93 | - for ($i=count($levels)-1; $i>=0; $i--) { |
|
| 93 | + for ($i = count($levels) - 1; $i >= 0; $i--) { |
|
| 94 | 94 | if ($item->total_credit >= $levels[$i]) { |
| 95 | 95 | assign_badge($is_user, $item, $badges[$i]); |
| 96 | 96 | unassign_badges($is_user, $item, $badges, $i); |
@@ -114,7 +114,7 @@ discard block |
||
| 114 | 114 | // count from highest to lowest level, so the user get's assigned the |
| 115 | 115 | // highest possible level and the lower levels get removed |
| 116 | 116 | // |
| 117 | - for ($i=count($levels)-1; $i>=0; $i--) { |
|
| 117 | + for ($i = count($levels) - 1; $i >= 0; $i--) { |
|
| 118 | 118 | if ($sub_total >= $levels[$i]) { |
| 119 | 119 | assign_badge($is_user, $item, $badges[$i]); |
| 120 | 120 | unassign_badges($is_user, $item, $badges, $i); |
@@ -134,7 +134,7 @@ discard block |
||
| 134 | 134 | $is_user, $badge_levels, $badge_level_names, $badge_images, |
| 135 | 135 | $subprojects_list |
| 136 | 136 | ) { |
| 137 | - $kind = $is_user?"user":"team"; |
|
| 137 | + $kind = $is_user ? "user" : "team"; |
|
| 138 | 138 | |
| 139 | 139 | // get badges for all subprojects including total |
| 140 | 140 | // |
@@ -143,7 +143,7 @@ discard block |
||
| 143 | 143 | } |
| 144 | 144 | |
| 145 | 145 | $n = 0; |
| 146 | - $maxid = $is_user?BoincUser::max("id"):BoincTeam::max("id"); |
|
| 146 | + $maxid = $is_user ?BoincUser::max("id") : BoincTeam::max("id"); |
|
| 147 | 147 | while ($n <= $maxid) { |
| 148 | 148 | $m = $n + 1000; |
| 149 | 149 | if ($is_user) { |
@@ -161,7 +161,7 @@ discard block |
||
| 161 | 161 | assign_tot_badge($is_user, $item, $badge_levels, $badges["total"]); |
| 162 | 162 | } else { |
| 163 | 163 | // appids come from project/project.inc |
| 164 | - $where_clause = "appid in (". implode(',', $sp["appids"]) .")"; |
|
| 164 | + $where_clause = "appid in (".implode(',', $sp["appids"]).")"; |
|
| 165 | 165 | assign_sub_badge( |
| 166 | 166 | $is_user, $item, $badge_levels, $badges[$sp["short_name"]], |
| 167 | 167 | $where_clause |
@@ -28,9 +28,9 @@ discard block |
||
| 28 | 28 | function export_item($item, $is_user, $f) { |
| 29 | 29 | global $sub_projects; |
| 30 | 30 | |
| 31 | - fprintf($f, $is_user?"<user>\n":"<team>\n"); |
|
| 31 | + fprintf($f, $is_user ? "<user>\n" : "<team>\n"); |
|
| 32 | 32 | fprintf($f, " <id>$item->id</id>\n"); |
| 33 | - $crs = $is_user? |
|
| 33 | + $crs = $is_user ? |
|
| 34 | 34 | BoincCreditUser::enum("userid=$item->id") |
| 35 | 35 | : BoincCreditTeam::enum("teamid=$item->id") |
| 36 | 36 | ; |
@@ -56,16 +56,16 @@ discard block |
||
| 56 | 56 | } |
| 57 | 57 | } |
| 58 | 58 | |
| 59 | - fprintf($f, $is_user?"</user>\n":"</team>\n"); |
|
| 59 | + fprintf($f, $is_user ? "</user>\n" : "</team>\n"); |
|
| 60 | 60 | } |
| 61 | 61 | |
| 62 | 62 | function export($is_user, $dir) { |
| 63 | 63 | $n = 0; |
| 64 | - $filename = $is_user?"$dir/user_work":"$dir/team_work"; |
|
| 64 | + $filename = $is_user ? "$dir/user_work" : "$dir/team_work"; |
|
| 65 | 65 | $f = fopen($filename, "w"); |
| 66 | 66 | if (!$f) die("fopen"); |
| 67 | - $is_user? fprintf($f, "<users>\n"): fprintf($f, "<teams>\n"); |
|
| 68 | - $maxid = $is_user?BoincUser::max("id"):BoincTeam::max("id"); |
|
| 67 | + $is_user ? fprintf($f, "<users>\n") : fprintf($f, "<teams>\n"); |
|
| 68 | + $maxid = $is_user ?BoincUser::max("id") : BoincTeam::max("id"); |
|
| 69 | 69 | while ($n <= $maxid) { |
| 70 | 70 | $m = $n + 1000; |
| 71 | 71 | if ($is_user) { |
@@ -78,7 +78,7 @@ discard block |
||
| 78 | 78 | } |
| 79 | 79 | $n = $m; |
| 80 | 80 | } |
| 81 | - $is_user? fprintf($f, "</users>\n"): fprintf($f, "</teams>\n"); |
|
| 81 | + $is_user ? fprintf($f, "</users>\n") : fprintf($f, "</teams>\n"); |
|
| 82 | 82 | fclose($f); |
| 83 | 83 | system("gzip -f $filename"); |
| 84 | 84 | } |
@@ -33,7 +33,7 @@ discard block |
||
| 33 | 33 | // Also error-check values, and return errors in $errors->* |
| 34 | 34 | |
| 35 | 35 | function option($name, $val) { |
| 36 | - $x = ($name == $val) ? "selected" : ""; |
|
| 36 | + $x = ($name == $val) ? "selected" : ""; |
|
| 37 | 37 | return "<option name='$name' $x>$name\n"; |
| 38 | 38 | } |
| 39 | 39 | |
@@ -53,7 +53,7 @@ discard block |
||
| 53 | 53 | if (APP_SELECT_PREFS) { |
| 54 | 54 | $app_array = array(); |
| 55 | 55 | $apps = BoincApp::enum("deprecated=0"); |
| 56 | - foreach($apps as $app) { |
|
| 56 | + foreach ($apps as $app) { |
|
| 57 | 57 | $app_array[] = array($app->id, $app->user_friendly_name); |
| 58 | 58 | } |
| 59 | 59 | } else { |
@@ -91,10 +91,10 @@ discard block |
||
| 91 | 91 | } |
| 92 | 92 | |
| 93 | 93 | function number_select($name, $max, $n) { |
| 94 | - $sel = ($n == 0) ? "selected":""; |
|
| 94 | + $sel = ($n == 0) ? "selected" : ""; |
|
| 95 | 95 | $x = "<select class=\"form-control input-sm\" name=$name> <option value=0 $sel>".tra("No limit")."</option>"; |
| 96 | - for ($i=1; $i<=$max; $i++) { |
|
| 97 | - $sel = ($n == $i) ? "selected":""; |
|
| 96 | + for ($i = 1; $i <= $max; $i++) { |
|
| 97 | + $sel = ($n == $i) ? "selected" : ""; |
|
| 98 | 98 | $x .= "<option value=$i $sel>$i</option>"; |
| 99 | 99 | } |
| 100 | 100 | $x .= "</select>"; |
@@ -106,7 +106,7 @@ discard block |
||
| 106 | 106 | return tra("No limit"); |
| 107 | 107 | } |
| 108 | 108 | |
| 109 | -function project_specific_prefs_edit($prefs, $error=false) { |
|
| 109 | +function project_specific_prefs_edit($prefs, $error = false) { |
|
| 110 | 110 | global $app_array; |
| 111 | 111 | if (COLOR_PREFS) { |
| 112 | 112 | $x = $prefs->color_scheme; |
@@ -132,15 +132,15 @@ discard block |
||
| 132 | 132 | } else { |
| 133 | 133 | $present = true; |
| 134 | 134 | } |
| 135 | - $checked = $present?"checked":""; |
|
| 135 | + $checked = $present ? "checked" : ""; |
|
| 136 | 136 | $x .= "<input type=checkbox name=app_id_$app_id $checked> $app_name<br>"; |
| 137 | 137 | } |
| 138 | 138 | tooltip_row2(APP_SELECT_TOOLTIP, APP_SELECT_DESC, $x); |
| 139 | - $checked = $prefs->allow_non_preferred_apps?"checked":""; |
|
| 139 | + $checked = $prefs->allow_non_preferred_apps ? "checked" : ""; |
|
| 140 | 140 | row2(ACCEPT_ANY_DESC, "<input type=checkbox name=allow_non_preferred_apps $checked>"); |
| 141 | 141 | } |
| 142 | 142 | if (NON_GRAPHICAL_PREF) { |
| 143 | - $checked = $prefs->non_graphical?"checked":""; |
|
| 143 | + $checked = $prefs->non_graphical ? "checked" : ""; |
|
| 144 | 144 | row2( |
| 145 | 145 | NON_GRAPHICAL_DESC, |
| 146 | 146 | "<input type=checkbox name=non_graphical $checked>" |
@@ -216,11 +216,11 @@ discard block |
||
| 216 | 216 | return $x; |
| 217 | 217 | } |
| 218 | 218 | |
| 219 | -function project_specific_prefs_show($prefs, $columns=false) { |
|
| 219 | +function project_specific_prefs_show($prefs, $columns = false) { |
|
| 220 | 220 | global $app_array; |
| 221 | 221 | if ($columns) { |
| 222 | 222 | if (COLOR_PREFS) { |
| 223 | - row_defs(COLOR_DESC,"color_scheme", "", "", $prefs); |
|
| 223 | + row_defs(COLOR_DESC, "color_scheme", "", "", $prefs); |
|
| 224 | 224 | } |
| 225 | 225 | if (GFX_CPU_PREFS) { |
| 226 | 226 | row_defs(MAX_GFX_CPU_PCT_DESC, "max_gfx_cpu_pct", "", "", $prefs); |
@@ -254,7 +254,7 @@ discard block |
||
| 254 | 254 | row2(ACCEPT_ANY_DESC, $prefs->allow_non_preferred_apps_text); |
| 255 | 255 | } |
| 256 | 256 | if (NON_GRAPHICAL_PREF) { |
| 257 | - row2(NON_GRAPHICAL_DESC, $prefs->non_graphical?tra("yes"):tra("no")); |
|
| 257 | + row2(NON_GRAPHICAL_DESC, $prefs->non_graphical ?tra("yes") : tra("no")); |
|
| 258 | 258 | } |
| 259 | 259 | if (MAX_JOBS_PREF) { |
| 260 | 260 | row2(tra("Max # jobs"), limit_string($prefs->max_jobs)); |
@@ -277,12 +277,12 @@ discard block |
||
| 277 | 277 | $cursor = 0; |
| 278 | 278 | while ($thisxml = parse_next_element($prefs_xml, "<app_id>", $cursor)) { |
| 279 | 279 | if (is_numeric($thisxml)) { |
| 280 | - $n = (int) $thisxml; |
|
| 280 | + $n = (int)$thisxml; |
|
| 281 | 281 | $prefs->app_ids[] = $n; |
| 282 | 282 | } |
| 283 | 283 | } |
| 284 | 284 | $prefs->allow_non_preferred_apps = parse_element($prefs_xml, "<allow_non_preferred_apps>"); |
| 285 | - $prefs->allow_non_preferred_apps_text = $prefs->allow_non_preferred_apps?"yes":"no"; |
|
| 285 | + $prefs->allow_non_preferred_apps_text = $prefs->allow_non_preferred_apps ? "yes" : "no"; |
|
| 286 | 286 | } |
| 287 | 287 | if (NON_GRAPHICAL_PREF) { |
| 288 | 288 | $prefs->non_graphical = parse_bool($prefs_xml, "non_graphical"); |
@@ -296,6 +296,6 @@ discard block |
||
| 296 | 296 | return $prefs; |
| 297 | 297 | } |
| 298 | 298 | |
| 299 | -$cvs_version_tracker[]="\$Id$"; //Generated automatically - do not edit |
|
| 299 | +$cvs_version_tracker[] = "\$Id$"; //Generated automatically - do not edit |
|
| 300 | 300 | |
| 301 | 301 | ?> |
@@ -26,38 +26,38 @@ |
||
| 26 | 26 | |
| 27 | 27 | page_head(tra("Teams")); |
| 28 | 28 | |
| 29 | -echo "<p>".tra("%1 participants may form %2 teams %3.", PROJECT, "<b>", "</b>") ." |
|
| 29 | +echo "<p>".tra("%1 participants may form %2 teams %3.", PROJECT, "<b>", "</b>")." |
|
| 30 | 30 | <p> |
| 31 | - ". tra("You may belong to only one team. You can join or quit a team at any time."). " |
|
| 31 | + ". tra("You may belong to only one team. You can join or quit a team at any time.")." |
|
| 32 | 32 | <p>" . |
| 33 | - tra("Each team has a %1 founder %2 who may:", "<b>", "</b>") . " |
|
| 33 | + tra("Each team has a %1 founder %2 who may:", "<b>", "</b>")." |
|
| 34 | 34 | <ul> |
| 35 | - <li> " . tra("edit the team's name and description") . " |
|
| 36 | - <li> " . tra("add or remove team admins") . " |
|
| 37 | - <li> " . tra("remove members from the team") . " |
|
| 38 | - <li> " . tra("disband a team if it has no members") . " |
|
| 35 | + <li> " . tra("edit the team's name and description")." |
|
| 36 | + <li> " . tra("add or remove team admins")." |
|
| 37 | + <li> " . tra("remove members from the team")." |
|
| 38 | + <li> " . tra("disband a team if it has no members")." |
|
| 39 | 39 | </ul> |
| 40 | 40 | <p>" . |
| 41 | - tra("To join a team, visit its team page and click %1 Join this team %2.", "<b>", "</b>") . " |
|
| 42 | - <h3>" . tra("Find a team") . "</h3> |
|
| 41 | + tra("To join a team, visit its team page and click %1 Join this team %2.", "<b>", "</b>")." |
|
| 42 | + <h3>" . tra("Find a team")."</h3> |
|
| 43 | 43 | "; |
| 44 | 44 | team_search_form(null); |
| 45 | 45 | echo " |
| 46 | 46 | |
| 47 | - <h3>" . tra("Top teams") . "</h3> |
|
| 47 | + <h3>" . tra("Top teams")."</h3> |
|
| 48 | 48 | <ul> |
| 49 | - <li> <a href=\"top_teams.php\">" . tra("All teams") . "</a> |
|
| 49 | + <li> <a href=\"top_teams.php\">" . tra("All teams")."</a> |
|
| 50 | 50 | "; |
| 51 | 51 | |
| 52 | -for ($i=1; $i<count($team_types); $i++) { |
|
| 52 | +for ($i = 1; $i < count($team_types); $i++) { |
|
| 53 | 53 | echo "<li> <a href=\"top_teams.php?type=".$i."\">".tra("%1 teams", team_type_name($i))."</a> |
| 54 | 54 | "; |
| 55 | 55 | } |
| 56 | 56 | |
| 57 | 57 | echo " |
| 58 | 58 | </ul> |
| 59 | - <h3>" . tra("Create a new team") . "</h3> |
|
| 60 | - " . tra("If you cannot find a team that is right for you, you can %1 create a team %2.", "<a href=\"team_create_form.php\">","</a>"); |
|
| 59 | + <h3>" . tra("Create a new team")."</h3> |
|
| 60 | + " . tra("If you cannot find a team that is right for you, you can %1 create a team %2.", "<a href=\"team_create_form.php\">", "</a>"); |
|
| 61 | 61 | page_tail(); |
| 62 | 62 | |
| 63 | 63 | ?> |
@@ -32,11 +32,11 @@ discard block |
||
| 32 | 32 | } |
| 33 | 33 | define('ITEM_LIMIT', 10000); |
| 34 | 34 | |
| 35 | -function get_top_teams($offset, $sort_by, $type){ |
|
| 35 | +function get_top_teams($offset, $sort_by, $type) { |
|
| 36 | 36 | global $teams_per_page; |
| 37 | 37 | $db = BoincDb::get(true); |
| 38 | 38 | $type_clause = null; |
| 39 | - if ($type){ |
|
| 39 | + if ($type) { |
|
| 40 | 40 | $type_clause = "type=$type"; |
| 41 | 41 | } |
| 42 | 42 | if ($sort_by == "total_credit") { |
@@ -60,26 +60,26 @@ discard block |
||
| 60 | 60 | if ($type < 0 || $type >= count($team_types)) { |
| 61 | 61 | $type = 0; |
| 62 | 62 | } |
| 63 | -$type_url=""; |
|
| 64 | -$type_name=""; |
|
| 63 | +$type_url = ""; |
|
| 64 | +$type_name = ""; |
|
| 65 | 65 | if ($type) { |
| 66 | 66 | $type_url = "&type=$type"; |
| 67 | 67 | $type_name = team_type_name($type); |
| 68 | 68 | } |
| 69 | 69 | |
| 70 | 70 | $offset = get_int("offset", true); |
| 71 | -if (!$offset) $offset=0; |
|
| 72 | -if ($offset % $teams_per_page) $offset = 0; |
|
| 71 | +if (!$offset) $offset = 0; |
|
| 72 | +if ($offset%$teams_per_page) $offset = 0; |
|
| 73 | 73 | |
| 74 | 74 | if ($offset < ITEM_LIMIT) { |
| 75 | 75 | $cache_args = "sort_by=$sort_by&offset=$offset$type_url"; |
| 76 | - $cacheddata = get_cached_data(TOP_PAGES_TTL,$cache_args); |
|
| 76 | + $cacheddata = get_cached_data(TOP_PAGES_TTL, $cache_args); |
|
| 77 | 77 | //If we have got the data in cache |
| 78 | - if ($cacheddata){ |
|
| 78 | + if ($cacheddata) { |
|
| 79 | 79 | $data = unserialize($cacheddata); // use the cached data |
| 80 | 80 | } else { |
| 81 | 81 | //if not do queries etc to generate new data |
| 82 | - $data = get_top_teams($offset,$sort_by,$type); |
|
| 82 | + $data = get_top_teams($offset, $sort_by, $type); |
|
| 83 | 83 | |
| 84 | 84 | // Calculate nusers before storing into the cache |
| 85 | 85 | foreach ($data as $team) { |
@@ -115,7 +115,7 @@ discard block |
||
| 115 | 115 | echo "<a href=top_teams.php?sort_by=$sort_by&offset=$new_offset".$type_url.">".tra("Previous %1", $teams_per_page)."</a> · "; |
| 116 | 116 | |
| 117 | 117 | } |
| 118 | - if ($n==$teams_per_page){ //If we aren't on the last page |
|
| 118 | + if ($n == $teams_per_page) { //If we aren't on the last page |
|
| 119 | 119 | $new_offset = $offset + $teams_per_page; |
| 120 | 120 | echo "<a href=top_teams.php?sort_by=$sort_by&offset=$new_offset".$type_url.">".tra("Next %1", $teams_per_page)."</a>"; |
| 121 | 121 | } |
@@ -30,7 +30,7 @@ discard block |
||
| 30 | 30 | $postid = get_int('postid', true); |
| 31 | 31 | $filter = get_str('filter', true); |
| 32 | 32 | |
| 33 | -if ($filter != "false"){ |
|
| 33 | +if ($filter != "false") { |
|
| 34 | 34 | $filter = true; |
| 35 | 35 | } else { |
| 36 | 36 | $filter = false; |
@@ -79,8 +79,8 @@ discard block |
||
| 79 | 79 | if ($temp_sort_style) { |
| 80 | 80 | $sort_style = $temp_sort_style; |
| 81 | 81 | } else if ($sort_style) { |
| 82 | - $forum_style = 0; // this is deprecated |
|
| 83 | - if ($logged_in_user){ |
|
| 82 | + $forum_style = 0; // this is deprecated |
|
| 83 | + if ($logged_in_user) { |
|
| 84 | 84 | $logged_in_user->prefs->thread_sorting = $sort_style; |
| 85 | 85 | $logged_in_user->prefs->update("thread_sorting=$sort_style"); |
| 86 | 86 | } else { |
@@ -92,7 +92,7 @@ discard block |
||
| 92 | 92 | ); |
| 93 | 93 | } else { |
| 94 | 94 | // get the sorting style from the user or a cookie |
| 95 | - if ($logged_in_user){ |
|
| 95 | + if ($logged_in_user) { |
|
| 96 | 96 | $sort_style = $logged_in_user->prefs->thread_sorting; |
| 97 | 97 | } else { |
| 98 | 98 | list($forum_style, $sort_style) = parse_forum_cookie(); |
@@ -120,10 +120,10 @@ discard block |
||
| 120 | 120 | |
| 121 | 121 | if (false) { |
| 122 | 122 | if ($forum->parent_type == 0) { |
| 123 | - if ($category->is_helpdesk && !$thread->status){ |
|
| 124 | - if ($logged_in_user){ |
|
| 125 | - if ($thread->owner == $logged_in_user->id){ |
|
| 126 | - if ($thread->replies !=0) { |
|
| 123 | + if ($category->is_helpdesk && !$thread->status) { |
|
| 124 | + if ($logged_in_user) { |
|
| 125 | + if ($thread->owner == $logged_in_user->id) { |
|
| 126 | + if ($thread->replies != 0) { |
|
| 127 | 127 | // Show a "this question has been answered" to the author |
| 128 | 128 | echo "<p>"; |
| 129 | 129 | show_button( |
@@ -189,7 +189,7 @@ discard block |
||
| 189 | 189 | // If logged in user is moderator, enable some extra features |
| 190 | 190 | // |
| 191 | 191 | if (is_moderator($logged_in_user, $forum)) { |
| 192 | - if ($thread->hidden){ |
|
| 192 | + if ($thread->hidden) { |
|
| 193 | 193 | show_button_small( |
| 194 | 194 | "forum_moderate_thread_action.php?action=unhide&thread=".$thread->id."$tokens", |
| 195 | 195 | tra("Unhide"), |
@@ -202,7 +202,7 @@ discard block |
||
| 202 | 202 | tra("Hide this thread") |
| 203 | 203 | ); |
| 204 | 204 | } |
| 205 | - if ($thread->sticky){ |
|
| 205 | + if ($thread->sticky) { |
|
| 206 | 206 | show_button_small( |
| 207 | 207 | "forum_moderate_thread_action.php?action=desticky&thread=".$thread->id."$tokens", |
| 208 | 208 | tra("Make unsticky"), |
@@ -308,5 +308,5 @@ discard block |
||
| 308 | 308 | $thread->update("views=views+1"); |
| 309 | 309 | |
| 310 | 310 | page_tail(); |
| 311 | -$cvs_version_tracker[]="\$Id$"; |
|
| 311 | +$cvs_version_tracker[] = "\$Id$"; |
|
| 312 | 312 | ?> |
@@ -50,7 +50,7 @@ discard block |
||
| 50 | 50 | $parent_post_id = 0; |
| 51 | 51 | } |
| 52 | 52 | |
| 53 | -if ($filter != "false"){ |
|
| 53 | +if ($filter != "false") { |
|
| 54 | 54 | $filter = true; |
| 55 | 55 | } else { |
| 56 | 56 | $filter = false; |
@@ -65,11 +65,11 @@ discard block |
||
| 65 | 65 | } |
| 66 | 66 | |
| 67 | 67 | $warning = null; |
| 68 | -if ($content && (!$preview)){ |
|
| 69 | - if (post_str('add_signature',true)=="add_it"){ |
|
| 70 | - $add_signature=true; // set a flag and concatenate later |
|
| 71 | - } else { |
|
| 72 | - $add_signature=false; |
|
| 68 | +if ($content && (!$preview)) { |
|
| 69 | + if (post_str('add_signature', true) == "add_it") { |
|
| 70 | + $add_signature = true; // set a flag and concatenate later |
|
| 71 | + } else { |
|
| 72 | + $add_signature = false; |
|
| 73 | 73 | } |
| 74 | 74 | check_tokens($logged_in_user->authenticator); |
| 75 | 75 | if (!akismet_check($logged_in_user, $content)) { |
@@ -88,7 +88,7 @@ discard block |
||
| 88 | 88 | } |
| 89 | 89 | } |
| 90 | 90 | |
| 91 | -page_head(tra("Post to thread"),'','','', $bbcode_js); |
|
| 91 | +page_head(tra("Post to thread"), '', '', '', $bbcode_js); |
|
| 92 | 92 | |
| 93 | 93 | show_forum_header($logged_in_user); |
| 94 | 94 | |
@@ -142,7 +142,7 @@ discard block |
||
| 142 | 142 | $x1 = tra("Message:").bbcode_info().post_warning(); |
| 143 | 143 | $x2 = ""; |
| 144 | 144 | if ($parent_post) { |
| 145 | - $x2 .=" ".tra("reply to %1 Message ID %2:", "<a href=#".$parent_post->id.">", " ".$parent_post->id."</a>"); |
|
| 145 | + $x2 .= " ".tra("reply to %1 Message ID %2:", "<a href=#".$parent_post->id.">", " ".$parent_post->id."</a>"); |
|
| 146 | 146 | } |
| 147 | 147 | $x2 .= "<form action=forum_reply.php?thread=".$thread->id; |
| 148 | 148 | |
@@ -153,7 +153,7 @@ discard block |
||
| 153 | 153 | $x2 .= " method=\"post\" name=\"post\" onsubmit=\"return checkForm(this)\">\n"; |
| 154 | 154 | $x2 .= form_tokens($logged_in_user->authenticator); |
| 155 | 155 | $x2 .= start_table_str().$bbcode_html.end_table_str()."<textarea class=\"form-control\" name=\"content\" rows=\"18\">"; |
| 156 | - $no_quote = get_int("no_quote", true)==1; |
|
| 156 | + $no_quote = get_int("no_quote", true) == 1; |
|
| 157 | 157 | if ($preview) { |
| 158 | 158 | $x2 .= htmlspecialchars($content); |
| 159 | 159 | } else if (!$no_quote) { |
@@ -162,9 +162,9 @@ discard block |
||
| 162 | 162 | } |
| 163 | 163 | } |
| 164 | 164 | if (!$logged_in_user->prefs->no_signature_by_default) { |
| 165 | - $enable_signature="checked=\"true\""; |
|
| 165 | + $enable_signature = "checked=\"true\""; |
|
| 166 | 166 | } else { |
| 167 | - $enable_signature=""; |
|
| 167 | + $enable_signature = ""; |
|
| 168 | 168 | } |
| 169 | 169 | $x2 .= "</textarea><p> </p> |
| 170 | 170 | <input class=\"btn btn-primary btn-sm \" type=\"submit\" name=\"preview\" value=\"".tra("Preview")."\"> |
@@ -179,9 +179,9 @@ discard block |
||
| 179 | 179 | } |
| 180 | 180 | |
| 181 | 181 | function quote_text($text) { |
| 182 | - $text = "[quote]" . $text . "[/quote]"; |
|
| 182 | + $text = "[quote]".$text."[/quote]"; |
|
| 183 | 183 | return $text; |
| 184 | 184 | } |
| 185 | 185 | |
| 186 | -$cvs_version_tracker[]="\$Id$"; |
|
| 186 | +$cvs_version_tracker[] = "\$Id$"; |
|
| 187 | 187 | ?> |
@@ -170,7 +170,7 @@ discard block |
||
| 170 | 170 | $b->create_time = (double)($batch->create_time); |
| 171 | 171 | $b->est_completion_time = (double)($batch->est_completion_time); |
| 172 | 172 | $b->njobs = (int)($batch->njobs); |
| 173 | - $b->fraction_done = (double) $batch->fraction_done; |
|
| 173 | + $b->fraction_done = (double)$batch->fraction_done; |
|
| 174 | 174 | $b->nerror_jobs = (int)($batch->nerror_jobs); |
| 175 | 175 | $b->state = (int)($batch->state); |
| 176 | 176 | $b->completion_time = (double)($batch->completion_time); |
@@ -398,7 +398,7 @@ discard block |
||
| 398 | 398 | </result> |
| 399 | 399 | </output_template> |
| 400 | 400 | "; |
| 401 | - for ($i=0; $i<2; $i++) { |
|
| 401 | + for ($i = 0; $i < 2; $i++) { |
|
| 402 | 402 | $job = new StdClass; |
| 403 | 403 | $job->input_files = array(); |
| 404 | 404 | $job->input_files[] = $f; |