@@ -30,8 +30,7 @@ discard block |
||
30 | 30 | * Convenience wrapper around native socket and file functions to allow for |
31 | 31 | * mocking. |
32 | 32 | */ |
33 | -class Socket |
|
34 | -{ |
|
33 | +class Socket { |
|
35 | 34 | private $handle = null; |
36 | 35 | |
37 | 36 | /** |
@@ -45,8 +44,7 @@ discard block |
||
45 | 44 | * @param float $timeout |
46 | 45 | * @return resource |
47 | 46 | */ |
48 | - public function fsockopen($hostname, $port = -1, &$errno = 0, &$errstr = '', $timeout = null) |
|
49 | - { |
|
47 | + public function fsockopen($hostname, $port = -1, &$errno = 0, &$errstr = '', $timeout = null) { |
|
50 | 48 | $this->handle = fsockopen($hostname, $port, $errno, $errstr, (is_null($timeout) ? ini_get("default_socket_timeout") : $timeout)); |
51 | 49 | |
52 | 50 | if ($this->handle != false && $errno === 0 && $errstr === '') { |
@@ -63,8 +61,7 @@ discard block |
||
63 | 61 | * @param int $length |
64 | 62 | * @return int | bool |
65 | 63 | */ |
66 | - public function fwrite($string, $length = null) |
|
67 | - { |
|
64 | + public function fwrite($string, $length = null) { |
|
68 | 65 | return fwrite($this->handle, $string, (is_null($length) ? strlen($string) : $length)); |
69 | 66 | } |
70 | 67 | |
@@ -75,8 +72,7 @@ discard block |
||
75 | 72 | * @param int $length |
76 | 73 | * @return string |
77 | 74 | */ |
78 | - public function fgets($length = null) |
|
79 | - { |
|
75 | + public function fgets($length = null) { |
|
80 | 76 | return fgets($this->handle, $length); |
81 | 77 | } |
82 | 78 | |
@@ -86,8 +82,7 @@ discard block |
||
86 | 82 | * @see http://php.net/feof |
87 | 83 | * @return bool |
88 | 84 | */ |
89 | - public function feof() |
|
90 | - { |
|
85 | + public function feof() { |
|
91 | 86 | return feof($this->handle); |
92 | 87 | } |
93 | 88 | |
@@ -97,8 +92,7 @@ discard block |
||
97 | 92 | * @see http://php.net/fclose |
98 | 93 | * @return bool |
99 | 94 | */ |
100 | - public function fclose() |
|
101 | - { |
|
95 | + public function fclose() { |
|
102 | 96 | return fclose($this->handle); |
103 | 97 | } |
104 | 98 | } |
@@ -29,16 +29,14 @@ discard block |
||
29 | 29 | /** |
30 | 30 | * Convenience wrapper around the cURL functions to allow mocking. |
31 | 31 | */ |
32 | -class Curl |
|
33 | -{ |
|
32 | +class Curl { |
|
34 | 33 | |
35 | 34 | /** |
36 | 35 | * @see http://php.net/curl_init |
37 | 36 | * @param string $url |
38 | 37 | * @return resource cURL handle |
39 | 38 | */ |
40 | - public function init($url = null) |
|
41 | - { |
|
39 | + public function init($url = null) { |
|
42 | 40 | return curl_init($url); |
43 | 41 | } |
44 | 42 | |
@@ -48,8 +46,7 @@ discard block |
||
48 | 46 | * @param array $options |
49 | 47 | * @return bool |
50 | 48 | */ |
51 | - public function setoptArray($ch, array $options) |
|
52 | - { |
|
49 | + public function setoptArray($ch, array $options) { |
|
53 | 50 | return curl_setopt_array($ch, $options); |
54 | 51 | } |
55 | 52 | |
@@ -58,8 +55,7 @@ discard block |
||
58 | 55 | * @param resource $ch |
59 | 56 | * @return mixed |
60 | 57 | */ |
61 | - public function exec($ch) |
|
62 | - { |
|
58 | + public function exec($ch) { |
|
63 | 59 | return curl_exec($ch); |
64 | 60 | } |
65 | 61 | |
@@ -67,8 +63,7 @@ discard block |
||
67 | 63 | * @see http://php.net/curl_close |
68 | 64 | * @param resource $ch |
69 | 65 | */ |
70 | - public function close($ch) |
|
71 | - { |
|
66 | + public function close($ch) { |
|
72 | 67 | curl_close($ch); |
73 | 68 | } |
74 | 69 | } |
@@ -29,8 +29,7 @@ discard block |
||
29 | 29 | /** |
30 | 30 | * The response returned from the service. |
31 | 31 | */ |
32 | -class Response |
|
33 | -{ |
|
32 | +class Response { |
|
34 | 33 | /** |
35 | 34 | * Succes or failure. |
36 | 35 | * @var boolean |
@@ -49,8 +48,7 @@ discard block |
||
49 | 48 | * @param string $json |
50 | 49 | * @return \ReCaptcha\Response |
51 | 50 | */ |
52 | - public static function fromJson($json) |
|
53 | - { |
|
51 | + public static function fromJson($json) { |
|
54 | 52 | $responseData = json_decode($json, true); |
55 | 53 | |
56 | 54 | if (!$responseData) { |
@@ -74,8 +72,7 @@ discard block |
||
74 | 72 | * @param boolean $success |
75 | 73 | * @param array $errorCodes |
76 | 74 | */ |
77 | - public function __construct($success, array $errorCodes = array()) |
|
78 | - { |
|
75 | + public function __construct($success, array $errorCodes = array()) { |
|
79 | 76 | $this->success = $success; |
80 | 77 | $this->errorCodes = $errorCodes; |
81 | 78 | } |
@@ -85,8 +82,7 @@ discard block |
||
85 | 82 | * |
86 | 83 | * @return boolean |
87 | 84 | */ |
88 | - public function isSuccess() |
|
89 | - { |
|
85 | + public function isSuccess() { |
|
90 | 86 | return $this->success; |
91 | 87 | } |
92 | 88 | |
@@ -95,8 +91,7 @@ discard block |
||
95 | 91 | * |
96 | 92 | * @return array |
97 | 93 | */ |
98 | - public function getErrorCodes() |
|
99 | - { |
|
94 | + public function getErrorCodes() { |
|
100 | 95 | return $this->errorCodes; |
101 | 96 | } |
102 | 97 | } |
@@ -29,8 +29,7 @@ discard block |
||
29 | 29 | /** |
30 | 30 | * Stores and formats the parameters for the request to the reCAPTCHA service. |
31 | 31 | */ |
32 | -class RequestParameters |
|
33 | -{ |
|
32 | +class RequestParameters { |
|
34 | 33 | /** |
35 | 34 | * Site secret. |
36 | 35 | * @var string |
@@ -63,8 +62,7 @@ discard block |
||
63 | 62 | * @param string $remoteIp User's IP address. |
64 | 63 | * @param string $version Version of this client library. |
65 | 64 | */ |
66 | - public function __construct($secret, $response, $remoteIp = null, $version = null) |
|
67 | - { |
|
65 | + public function __construct($secret, $response, $remoteIp = null, $version = null) { |
|
68 | 66 | $this->secret = $secret; |
69 | 67 | $this->response = $response; |
70 | 68 | $this->remoteIp = $remoteIp; |
@@ -76,8 +74,7 @@ discard block |
||
76 | 74 | * |
77 | 75 | * @return array Array formatted parameters. |
78 | 76 | */ |
79 | - public function toArray() |
|
80 | - { |
|
77 | + public function toArray() { |
|
81 | 78 | $params = array('secret' => $this->secret, 'response' => $this->response); |
82 | 79 | |
83 | 80 | if (!is_null($this->remoteIp)) { |
@@ -96,8 +93,7 @@ discard block |
||
96 | 93 | * |
97 | 94 | * @return string Query string formatted parameters. |
98 | 95 | */ |
99 | - public function toQueryString() |
|
100 | - { |
|
96 | + public function toQueryString() { |
|
101 | 97 | return http_build_query($this->toArray(), '', '&'); |
102 | 98 | } |
103 | 99 | } |
@@ -56,17 +56,17 @@ discard block |
||
56 | 56 | $dl_md5_path = "$dl_path.md5"; |
57 | 57 | $have_md5_file = false; |
58 | 58 | $md5 = md5_file($path); |
59 | - if ($md5 === FALSE) { |
|
59 | + if ($md5 === false) { |
|
60 | 60 | return -2; |
61 | 61 | } |
62 | 62 | $size = filesize($path); |
63 | - if ($size === FALSE) { |
|
63 | + if ($size === false) { |
|
64 | 64 | return -2; |
65 | 65 | } |
66 | 66 | |
67 | 67 | if (file_exists($dl_md5_path)) { |
68 | 68 | $x = file_get_contents($dl_md5_path); |
69 | - if ($x === FALSE) { |
|
69 | + if ($x === false) { |
|
70 | 70 | return -2; |
71 | 71 | } |
72 | 72 | $x = explode(" ", $x); |
@@ -78,7 +78,7 @@ discard block |
||
78 | 78 | if (file_exists($dl_path)) { |
79 | 79 | if ($have_md5_file) { |
80 | 80 | $s = filesize($dl_path); |
81 | - if ($s === FALSE) { |
|
81 | + if ($s === false) { |
|
82 | 82 | return -2; |
83 | 83 | } |
84 | 84 | if ($s == $dl_size && $dl_md5 == $md5) { |
@@ -91,11 +91,11 @@ discard block |
||
91 | 91 | // missing the .md5 file; need to look at the file |
92 | 92 | // |
93 | 93 | $m = md5_file($dl_path); |
94 | - if ($m === FALSE) { |
|
94 | + if ($m === false) { |
|
95 | 95 | return -2; |
96 | 96 | } |
97 | 97 | if ($m == $md5) { |
98 | - if (file_put_contents($dl_md5_path, "$md5 $size\n") === FALSE) { |
|
98 | + if (file_put_contents($dl_md5_path, "$md5 $size\n") === false) { |
|
99 | 99 | return -2; |
100 | 100 | } |
101 | 101 | return 0; |
@@ -103,7 +103,7 @@ discard block |
||
103 | 103 | return -1; |
104 | 104 | } |
105 | 105 | } else { |
106 | - if (file_put_contents($dl_md5_path, "$md5 $size\n") === FALSE) { |
|
106 | + if (file_put_contents($dl_md5_path, "$md5 $size\n") === false) { |
|
107 | 107 | return -2; |
108 | 108 | } |
109 | 109 | return 1; |
@@ -37,7 +37,7 @@ |
||
37 | 37 | } |
38 | 38 | |
39 | 39 | function upload_path($filename) { |
40 | - static $upload_dir=null; |
|
40 | + static $upload_dir = null; |
|
41 | 41 | if (!$upload_dir) { |
42 | 42 | $config = get_config(); |
43 | 43 | $upload_dir = parse_config($config, '<upload_dir>'); |
@@ -367,7 +367,7 @@ |
||
367 | 367 | $i++; |
368 | 368 | } |
369 | 369 | if ($start === null) { |
370 | - echo "Post $postid not found."; |
|
370 | + echo "post $postid not found."; |
|
371 | 371 | return; |
372 | 372 | } |
373 | 373 | } else if ($logged_in_user && $logged_in_user->prefs->jump_to_unread) { |
@@ -238,7 +238,7 @@ discard block |
||
238 | 238 | |
239 | 239 | // return a string for navigating pages |
240 | 240 | // |
241 | -function page_links($url, $nitems, $items_per_page, $start){ |
|
241 | +function page_links($url, $nitems, $items_per_page, $start) { |
|
242 | 242 | // How many pages to potentially show before and after this one: |
243 | 243 | $preshow = 3; |
244 | 244 | $postshow = 3; |
@@ -251,7 +251,7 @@ discard block |
||
251 | 251 | |
252 | 252 | // If this is not the first page, display "previous" |
253 | 253 | // |
254 | - if ($curpage > 0){ |
|
254 | + if ($curpage > 0) { |
|
255 | 255 | $x .= page_link( |
256 | 256 | $url, $curpage-1, $items_per_page, |
257 | 257 | tra("Previous")." · " |
@@ -268,7 +268,7 @@ discard block |
||
268 | 268 | } |
269 | 269 | // Display a list of pages surrounding this one |
270 | 270 | // |
271 | - for ($i=$curpage-$preshow; $i<=$curpage+$postshow; $i++){ |
|
271 | + for ($i=$curpage-$preshow; $i<=$curpage+$postshow; $i++) { |
|
272 | 272 | $page_str = (string)($i+1); |
273 | 273 | if ($i < 0) continue; |
274 | 274 | if ($i >= $npages) break; |
@@ -289,7 +289,7 @@ discard block |
||
289 | 289 | } |
290 | 290 | // If there is a next page |
291 | 291 | // |
292 | - if ($curpage < $npages-1){ |
|
292 | + if ($curpage < $npages-1) { |
|
293 | 293 | $x .= page_link( |
294 | 294 | $url, $curpage+1, $items_per_page, |
295 | 295 | " · ".tra("Next") |
@@ -518,7 +518,7 @@ discard block |
||
518 | 518 | |
519 | 519 | // If the user no longer exists, skip the post |
520 | 520 | // |
521 | - if (!$user){ |
|
521 | + if (!$user) { |
|
522 | 522 | return; |
523 | 523 | } |
524 | 524 | |
@@ -539,9 +539,9 @@ discard block |
||
539 | 539 | // check whether the poster is on the list of people to ignore |
540 | 540 | // |
541 | 541 | $ignore_poster = false; |
542 | - if ($logged_in_user){ |
|
542 | + if ($logged_in_user) { |
|
543 | 543 | $tokens = url_tokens($logged_in_user->authenticator); |
544 | - if (is_ignoring($logged_in_user, $user)){ |
|
544 | + if (is_ignoring($logged_in_user, $user)) { |
|
545 | 545 | $ignore_poster = true; |
546 | 546 | } |
547 | 547 | } |
@@ -578,7 +578,7 @@ discard block |
||
578 | 578 | |
579 | 579 | // Highlight special users if set in prefs; |
580 | 580 | // |
581 | - if ($logged_in_user && $logged_in_user->prefs){ |
|
581 | + if ($logged_in_user && $logged_in_user->prefs) { |
|
582 | 582 | $highlight = $logged_in_user->prefs->highlight_special && $is_posted_by_special; |
583 | 583 | } else { |
584 | 584 | $highlight = $is_posted_by_special; |
@@ -599,7 +599,7 @@ discard block |
||
599 | 599 | echo "<span class=\"small\">"; |
600 | 600 | if ($fstatus) echo "$fstatus"; |
601 | 601 | |
602 | - if (!$filter || !$ignore_poster){ |
|
602 | + if (!$filter || !$ignore_poster) { |
|
603 | 603 | if ($user->prefs && $user->prefs->avatar!="" && (!$logged_in_user || ($logged_in_user->prefs->hide_avatars==false))) { |
604 | 604 | echo "<img width=\"".AVATAR_WIDTH."\" height=\"".AVATAR_HEIGHT."\" src=\"".avatar_url($user->prefs->avatar)."\" alt=\"Avatar\"><br>"; |
605 | 605 | } |
@@ -615,7 +615,7 @@ discard block |
||
615 | 615 | $user->nposts = BoincPost::count("user=$user->id"); |
616 | 616 | } |
617 | 617 | |
618 | - if (function_exists('project_forum_user_info')){ |
|
618 | + if (function_exists('project_forum_user_info')) { |
|
619 | 619 | project_forum_user_info($user); |
620 | 620 | } else { |
621 | 621 | echo tra("Posts: %1", $user->nposts)."<br>"; |
@@ -654,7 +654,7 @@ discard block |
||
654 | 654 | echo "<form action=\"forum_rate.php?post=", $post->id, "\" method=\"post\">"; |
655 | 655 | } |
656 | 656 | |
657 | - if ($logged_in_user && $post->timestamp > $latest_viewed){ |
|
657 | + if ($logged_in_user && $post->timestamp > $latest_viewed) { |
|
658 | 658 | show_image(NEW_IMAGE, tra("You haven't read this message yet"), tra("Unread"), NEW_IMAGE_HEIGHT); |
659 | 659 | } |
660 | 660 | |
@@ -674,7 +674,7 @@ discard block |
||
674 | 674 | if ($post->modified) { |
675 | 675 | echo "<br>".tra("Last modified: %1", pretty_time_Str($post->modified)); |
676 | 676 | } |
677 | - if ($ignore_poster && $filter){ |
|
677 | + if ($ignore_poster && $filter) { |
|
678 | 678 | echo "<br>" .tra( |
679 | 679 | "This post is hidden because the sender is on your 'ignore' list. Click %1 here %2 to view hidden posts", |
680 | 680 | "<a href=\"?id=".$thread->id."&filter=false&start=$start#".$post->id."\">", |
@@ -688,7 +688,7 @@ discard block |
||
688 | 688 | <p> |
689 | 689 | "; |
690 | 690 | |
691 | - if (!$filter || !$ignore_poster){ |
|
691 | + if (!$filter || !$ignore_poster) { |
|
692 | 692 | $posttext = $post->content; |
693 | 693 | |
694 | 694 | // If the creator of this post has a signature and |
@@ -696,7 +696,7 @@ discard block |
||
696 | 696 | // user has signatures enabled: show it |
697 | 697 | // |
698 | 698 | $posttext = output_transform($posttext, $options); |
699 | - if ($post->signature && (!$logged_in_user || !$logged_in_user->prefs->hide_signatures)){ |
|
699 | + if ($post->signature && (!$logged_in_user || !$logged_in_user->prefs->hide_signatures)) { |
|
700 | 700 | $sig = output_transform($user->prefs->signature, $options); |
701 | 701 | $posttext .= "<hr>$sig\n"; |
702 | 702 | } |
@@ -755,7 +755,7 @@ discard block |
||
755 | 755 | $content = output_transform($post->content, $options); |
756 | 756 | $when = time_diff_str($post->timestamp, time()); |
757 | 757 | $user = BoincUser::lookup_id($post->user); |
758 | - if (!$user){ |
|
758 | + if (!$user) { |
|
759 | 759 | return; |
760 | 760 | } |
761 | 761 | |
@@ -1089,7 +1089,7 @@ discard block |
||
1089 | 1089 | |
1090 | 1090 | $sql = 'forum = ' . $forumID ; |
1091 | 1091 | $stickysql = ""; |
1092 | - if ($sticky){ |
|
1092 | + if ($sticky) { |
|
1093 | 1093 | $stickysql = "sticky DESC, "; |
1094 | 1094 | } |
1095 | 1095 | if (!$show_hidden) { |
@@ -1170,7 +1170,7 @@ discard block |
||
1170 | 1170 | // |
1171 | 1171 | function show_post_moderation_links( |
1172 | 1172 | $config, $logged_in_user, $post, $forum, $tokens |
1173 | -){ |
|
1173 | +) { |
|
1174 | 1174 | $moderators_allowed_to_ban = parse_bool($config, "moderators_allowed_to_ban"); |
1175 | 1175 | $moderators_vote_to_ban = parse_bool($config, "moderators_vote_to_ban"); |
1176 | 1176 |
@@ -811,9 +811,9 @@ discard block |
||
811 | 811 | function post_rules() { |
812 | 812 | if (defined('FORUM_RULES')) return FORUM_RULES; |
813 | 813 | if (function_exists("project_forum_post_rules")) { |
814 | - $project_rules=project_forum_post_rules(); |
|
814 | + $project_rules=project_forum_post_rules(); |
|
815 | 815 | } else { |
816 | - $project_rules=""; |
|
816 | + $project_rules=""; |
|
817 | 817 | } |
818 | 818 | return sprintf(" |
819 | 819 | <ul> |
@@ -1278,7 +1278,7 @@ discard block |
||
1278 | 1278 | } |
1279 | 1279 | if ($thread->hidden) { |
1280 | 1280 | error_page( |
1281 | - tra("Can't post to a hidden thread.") |
|
1281 | + tra("Can't post to a hidden thread.") |
|
1282 | 1282 | ); |
1283 | 1283 | } |
1284 | 1284 |
@@ -24,7 +24,7 @@ discard block |
||
24 | 24 | require_once("../inc/text_transform.inc"); |
25 | 25 | |
26 | 26 | define('THREADS_PER_PAGE', 50); |
27 | -define('FORUM_LH_PCT', '25%'); // width of LH column |
|
27 | +define('FORUM_LH_PCT', '25%'); // width of LH column |
|
28 | 28 | |
29 | 29 | $forum_error = ""; |
30 | 30 | // for functions that return null on error, |
@@ -55,7 +55,7 @@ discard block |
||
55 | 55 | define('THREAD_SOLVED', 1); |
56 | 56 | |
57 | 57 | define('AVATAR_WIDTH', 100); |
58 | -define('AVATAR_HEIGHT',100); |
|
58 | +define('AVATAR_HEIGHT', 100); |
|
59 | 59 | |
60 | 60 | define('ST_NEW_TIME', 1209600); //3600*24*14 - 14 days |
61 | 61 | define('ST_NEW', 'New member'); |
@@ -80,24 +80,24 @@ discard block |
||
80 | 80 | define('IMAGE_HIDDEN', 'img/hidden.png'); |
81 | 81 | define('IMAGE_STICKY_LOCKED', 'img/sticky_locked_post.png'); |
82 | 82 | define('IMAGE_POST', 'img/post.png'); |
83 | -define('NEW_IMAGE_HEIGHT','15'); |
|
83 | +define('NEW_IMAGE_HEIGHT', '15'); |
|
84 | 84 | define('EMPHASIZE_IMAGE', 'img/emphasized_post.png'); |
85 | -define('EMPHASIZE_IMAGE_HEIGHT','15'); |
|
85 | +define('EMPHASIZE_IMAGE_HEIGHT', '15'); |
|
86 | 86 | define('FILTER_IMAGE', 'img/filtered_post.png'); |
87 | -define('FILTER_IMAGE_HEIGHT','15'); |
|
87 | +define('FILTER_IMAGE_HEIGHT', '15'); |
|
88 | 88 | define('RATE_POSITIVE_IMAGE', 'img/rate_positive.png'); |
89 | -define('RATE_POSITIVE_IMAGE_HEIGHT','9'); |
|
89 | +define('RATE_POSITIVE_IMAGE_HEIGHT', '9'); |
|
90 | 90 | define('RATE_NEGATIVE_IMAGE', 'img/rate_negative.png'); |
91 | -define('RATE_NEGATIVE_IMAGE_HEIGHT','9'); |
|
91 | +define('RATE_NEGATIVE_IMAGE_HEIGHT', '9'); |
|
92 | 92 | define('REPORT_POST_IMAGE', 'img/report_post.png'); |
93 | -define('REPORT_POST_IMAGE_HEIGHT','9'); |
|
93 | +define('REPORT_POST_IMAGE_HEIGHT', '9'); |
|
94 | 94 | |
95 | 95 | define('SOLUTION', tra('This answered my question')); |
96 | 96 | define('SUFFERER', tra('I also have this question')); |
97 | 97 | define('OFF_TOPIC', tra('Off-topic')); |
98 | 98 | |
99 | -define ('DEFAULT_LOW_RATING_THRESHOLD', -25); |
|
100 | -define ('DEFAULT_HIGH_RATING_THRESHOLD', 5); |
|
99 | +define('DEFAULT_LOW_RATING_THRESHOLD', -25); |
|
100 | +define('DEFAULT_HIGH_RATING_THRESHOLD', 5); |
|
101 | 101 | |
102 | 102 | // special user attributes |
103 | 103 | // |
@@ -175,15 +175,15 @@ discard block |
||
175 | 175 | |
176 | 176 | // return forum/thread title, with links. |
177 | 177 | // |
178 | -function forum_title($category, $forum, $thread, $link_thread=false) { |
|
178 | +function forum_title($category, $forum, $thread, $link_thread = false) { |
|
179 | 179 | if ($category) { |
180 | 180 | $is_helpdesk = $category->is_helpdesk; |
181 | 181 | } else { |
182 | 182 | $is_helpdesk = false; |
183 | 183 | } |
184 | 184 | |
185 | - $where = $is_helpdesk?tra("Questions and Answers"):tra("Message boards"); |
|
186 | - $top_url = $is_helpdesk?"forum_help_desk.php":"forum_index.php"; |
|
185 | + $where = $is_helpdesk ?tra("Questions and Answers") : tra("Message boards"); |
|
186 | + $top_url = $is_helpdesk ? "forum_help_desk.php" : "forum_index.php"; |
|
187 | 187 | |
188 | 188 | $x = ''; |
189 | 189 | if (!$forum && !$thread) { |
@@ -217,7 +217,7 @@ discard block |
||
217 | 217 | return $x; |
218 | 218 | } |
219 | 219 | |
220 | -function team_forum_title($forum, $thread=null, $link_thread=false) { |
|
220 | +function team_forum_title($forum, $thread = null, $link_thread = false) { |
|
221 | 221 | $team = BoincTeam::lookup_id($forum->category); |
222 | 222 | $x = sprintf('<a href="forum_index.php">%s</a> :', |
223 | 223 | tra("Message boards") |
@@ -251,12 +251,12 @@ discard block |
||
251 | 251 | } |
252 | 252 | |
253 | 253 | function page_link($url, $page_num, $items_per_page, $text) { |
254 | - return " <a href=\"$url&start=" . $page_num*$items_per_page . "\">$text</a> "; |
|
254 | + return " <a href=\"$url&start=".$page_num*$items_per_page."\">$text</a> "; |
|
255 | 255 | } |
256 | 256 | |
257 | 257 | // return a string for navigating pages |
258 | 258 | // |
259 | -function page_links($url, $nitems, $items_per_page, $start){ |
|
259 | +function page_links($url, $nitems, $items_per_page, $start) { |
|
260 | 260 | // How many pages to potentially show before and after this one: |
261 | 261 | $preshow = 3; |
262 | 262 | $postshow = 3; |
@@ -264,14 +264,14 @@ discard block |
||
264 | 264 | $x = ""; |
265 | 265 | |
266 | 266 | if ($nitems <= $items_per_page) return ""; |
267 | - $npages = ceil($nitems / $items_per_page); |
|
268 | - $curpage = ceil($start / $items_per_page); |
|
267 | + $npages = ceil($nitems/$items_per_page); |
|
268 | + $curpage = ceil($start/$items_per_page); |
|
269 | 269 | |
270 | 270 | // If this is not the first page, display "previous" |
271 | 271 | // |
272 | - if ($curpage > 0){ |
|
272 | + if ($curpage > 0) { |
|
273 | 273 | $x .= page_link( |
274 | - $url, $curpage-1, $items_per_page, |
|
274 | + $url, $curpage - 1, $items_per_page, |
|
275 | 275 | tra("Previous")." · " |
276 | 276 | ); |
277 | 277 | } |
@@ -286,8 +286,8 @@ discard block |
||
286 | 286 | } |
287 | 287 | // Display a list of pages surrounding this one |
288 | 288 | // |
289 | - for ($i=$curpage-$preshow; $i<=$curpage+$postshow; $i++){ |
|
290 | - $page_str = (string)($i+1); |
|
289 | + for ($i = $curpage - $preshow; $i <= $curpage + $postshow; $i++) { |
|
290 | + $page_str = (string)($i + 1); |
|
291 | 291 | if ($i < 0) continue; |
292 | 292 | if ($i >= $npages) break; |
293 | 293 | |
@@ -296,20 +296,20 @@ discard block |
||
296 | 296 | } else { |
297 | 297 | $x .= page_link($url, $i, $items_per_page, $page_str); |
298 | 298 | } |
299 | - if ($i == $npages-1) break; |
|
300 | - if ($i == $curpage+$postshow) break; |
|
299 | + if ($i == $npages - 1) break; |
|
300 | + if ($i == $curpage + $postshow) break; |
|
301 | 301 | $x .= " · "; |
302 | 302 | } |
303 | 303 | |
304 | - if ($curpage + $postshow < $npages-1) { |
|
304 | + if ($curpage + $postshow < $npages - 1) { |
|
305 | 305 | $x .= " . . . "; |
306 | - $x .= page_link($url, $npages-1, $items_per_page, $npages); |
|
306 | + $x .= page_link($url, $npages - 1, $items_per_page, $npages); |
|
307 | 307 | } |
308 | 308 | // If there is a next page |
309 | 309 | // |
310 | - if ($curpage < $npages-1){ |
|
310 | + if ($curpage < $npages - 1) { |
|
311 | 311 | $x .= page_link( |
312 | - $url, $curpage+1, $items_per_page, |
|
312 | + $url, $curpage + 1, $items_per_page, |
|
313 | 313 | " · ".tra("Next") |
314 | 314 | ); |
315 | 315 | } |
@@ -330,7 +330,7 @@ discard block |
||
330 | 330 | function cleanup_title($title) { |
331 | 331 | $x = sanitize_tags(bb2html($title)); |
332 | 332 | $x = trim($x); |
333 | - if (strlen($x)==0) return "(no title)"; |
|
333 | + if (strlen($x) == 0) return "(no title)"; |
|
334 | 334 | else return $x; |
335 | 335 | } |
336 | 336 | |
@@ -392,7 +392,7 @@ discard block |
||
392 | 392 | $i = 0; |
393 | 393 | foreach ($posts as $post) { |
394 | 394 | if ($post->id == $postid) { |
395 | - $start = $i - ($i % $num_to_show); |
|
395 | + $start = $i - ($i%$num_to_show); |
|
396 | 396 | $jump_to_post = $post; |
397 | 397 | break; |
398 | 398 | } |
@@ -419,7 +419,7 @@ discard block |
||
419 | 419 | // if jump to post, figure out what page to show |
420 | 420 | // |
421 | 421 | if ($jump_to_post) { |
422 | - $start = $ibest - ($ibest % $num_to_show); |
|
422 | + $start = $ibest - ($ibest%$num_to_show); |
|
423 | 423 | } else { |
424 | 424 | $start = $default_start; |
425 | 425 | } |
@@ -527,8 +527,8 @@ discard block |
||
527 | 527 | // Generates a table row with two cells: author and message |
528 | 528 | // |
529 | 529 | function show_post( |
530 | - $post, $thread, $forum, $logged_in_user, $start=0, |
|
531 | - $latest_viewed=0, $controls=FORUM_CONTROLS, $filter=true |
|
530 | + $post, $thread, $forum, $logged_in_user, $start = 0, |
|
531 | + $latest_viewed = 0, $controls = FORUM_CONTROLS, $filter = true |
|
532 | 532 | ) { |
533 | 533 | global $country_to_iso3166_2; |
534 | 534 | |
@@ -536,7 +536,7 @@ discard block |
||
536 | 536 | |
537 | 537 | // If the user no longer exists, skip the post |
538 | 538 | // |
539 | - if (!$user){ |
|
539 | + if (!$user) { |
|
540 | 540 | return; |
541 | 541 | } |
542 | 542 | |
@@ -557,9 +557,9 @@ discard block |
||
557 | 557 | // check whether the poster is on the list of people to ignore |
558 | 558 | // |
559 | 559 | $ignore_poster = false; |
560 | - if ($logged_in_user){ |
|
560 | + if ($logged_in_user) { |
|
561 | 561 | $tokens = url_tokens($logged_in_user->authenticator); |
562 | - if (is_ignoring($logged_in_user, $user)){ |
|
562 | + if (is_ignoring($logged_in_user, $user)) { |
|
563 | 563 | $ignore_poster = true; |
564 | 564 | } |
565 | 565 | } |
@@ -573,8 +573,8 @@ discard block |
||
573 | 573 | if (is_moderator($logged_in_user, $forum)) { |
574 | 574 | $can_edit = true; |
575 | 575 | } else if (can_reply($thread, $forum, $logged_in_user)) { |
576 | - $time_limit = $post->timestamp+MAXIMUM_EDIT_TIME; |
|
577 | - $can_edit = time()<$time_limit; |
|
576 | + $time_limit = $post->timestamp + MAXIMUM_EDIT_TIME; |
|
577 | + $can_edit = time() < $time_limit; |
|
578 | 578 | } else { |
579 | 579 | $can_edit = false; |
580 | 580 | } |
@@ -584,10 +584,10 @@ discard block |
||
584 | 584 | // Print the special user lines, if any |
585 | 585 | // |
586 | 586 | global $special_user_bitfield; |
587 | - $fstatus=""; |
|
587 | + $fstatus = ""; |
|
588 | 588 | $keys = array_keys($special_user_bitfield); |
589 | 589 | $is_posted_by_special = false; |
590 | - for ($i=0; $i<sizeof($special_user_bitfield);$i++) { |
|
590 | + for ($i = 0; $i < sizeof($special_user_bitfield); $i++) { |
|
591 | 591 | if ($user->prefs && $user->prefs->privilege($keys[$i])) { |
592 | 592 | $fstatus .= "<nobr>".$special_user_bitfield[$keys[$i]]."<nobr><br>"; |
593 | 593 | $is_posted_by_special = true; |
@@ -600,12 +600,12 @@ discard block |
||
600 | 600 | |
601 | 601 | // Highlight special users if set in prefs; |
602 | 602 | // |
603 | - if ($logged_in_user && $logged_in_user->prefs){ |
|
603 | + if ($logged_in_user && $logged_in_user->prefs) { |
|
604 | 604 | $highlight = $logged_in_user->prefs->highlight_special && $is_posted_by_special; |
605 | 605 | } else { |
606 | 606 | $highlight = $is_posted_by_special; |
607 | 607 | } |
608 | - $class = $highlight?' style="border-left: 5px solid LightGreen" ':''; |
|
608 | + $class = $highlight ? ' style="border-left: 5px solid LightGreen" ' : ''; |
|
609 | 609 | |
610 | 610 | // row and start of author col |
611 | 611 | // |
@@ -617,12 +617,12 @@ discard block |
||
617 | 617 | |
618 | 618 | echo user_links($user, 0, 30); |
619 | 619 | echo "<br>"; |
620 | - if ($user->create_time > time()-ST_NEW_TIME) $fstatus.=ST_NEW."<br>"; |
|
620 | + if ($user->create_time > time() - ST_NEW_TIME) $fstatus .= ST_NEW."<br>"; |
|
621 | 621 | echo "<span class=\"small\">"; |
622 | 622 | if ($fstatus) echo "$fstatus"; |
623 | 623 | |
624 | - if (!$filter || !$ignore_poster){ |
|
625 | - if ($user->prefs && $user->prefs->avatar!="" && (!$logged_in_user || ($logged_in_user->prefs->hide_avatars==false))) { |
|
624 | + if (!$filter || !$ignore_poster) { |
|
625 | + if ($user->prefs && $user->prefs->avatar != "" && (!$logged_in_user || ($logged_in_user->prefs->hide_avatars == false))) { |
|
626 | 626 | echo "<img width=\"".AVATAR_WIDTH."\" height=\"".AVATAR_HEIGHT."\" src=\"".avatar_url($user->prefs->avatar)."\" alt=\"Avatar\"><br>"; |
627 | 627 | } |
628 | 628 | } |
@@ -630,14 +630,14 @@ discard block |
||
630 | 630 | |
631 | 631 | $url = "pm.php?action=new&userid=".$user->id; |
632 | 632 | $name = $user->name; |
633 | - show_button_small($url, tra("Send message"), tra("Send %1 a private message",$name)); |
|
633 | + show_button_small($url, tra("Send message"), tra("Send %1 a private message", $name)); |
|
634 | 634 | echo '<br>'.tra("Joined: %1", gmdate('j M y', $user->create_time)), "<br>"; |
635 | 635 | |
636 | 636 | if (!isset($user->nposts)) { |
637 | 637 | $user->nposts = BoincPost::count("user=$user->id"); |
638 | 638 | } |
639 | 639 | |
640 | - if (function_exists('project_forum_user_info')){ |
|
640 | + if (function_exists('project_forum_user_info')) { |
|
641 | 641 | project_forum_user_info($user); |
642 | 642 | } else { |
643 | 643 | echo tra("Posts: %1", $user->nposts)."<br>"; |
@@ -646,8 +646,8 @@ discard block |
||
646 | 646 | // |
647 | 647 | //echo "ID: ".$user->id."<br>"; |
648 | 648 | if (!NO_COMPUTING) { |
649 | - echo tra("Credit: %1", number_format($user->total_credit)) ."<br>"; |
|
650 | - echo tra("RAC: %1", number_format($user->expavg_credit))."<br>"; |
|
649 | + echo tra("Credit: %1", number_format($user->total_credit))."<br>"; |
|
650 | + echo tra("RAC: %1", number_format($user->expavg_credit))."<br>"; |
|
651 | 651 | } |
652 | 652 | |
653 | 653 | // to use this feature: |
@@ -676,7 +676,7 @@ discard block |
||
676 | 676 | echo "<form action=\"forum_rate.php?post=", $post->id, "\" method=\"post\">"; |
677 | 677 | } |
678 | 678 | |
679 | - if ($logged_in_user && $post->timestamp > $latest_viewed){ |
|
679 | + if ($logged_in_user && $post->timestamp > $latest_viewed) { |
|
680 | 680 | show_image(NEW_IMAGE, tra("You haven't read this message yet"), tra("Unread"), NEW_IMAGE_HEIGHT); |
681 | 681 | } |
682 | 682 | |
@@ -696,8 +696,8 @@ discard block |
||
696 | 696 | if ($post->modified) { |
697 | 697 | echo "<br>".tra("Last modified: %1", pretty_time_Str($post->modified)); |
698 | 698 | } |
699 | - if ($ignore_poster && $filter){ |
|
700 | - echo "<br>" .tra( |
|
699 | + if ($ignore_poster && $filter) { |
|
700 | + echo "<br>".tra( |
|
701 | 701 | "This post is hidden because the sender is on your 'ignore' list. Click %1 here %2 to view hidden posts", |
702 | 702 | "<a href=\"?id=".$thread->id."&filter=false&start=$start#".$post->id."\">", |
703 | 703 | "</a>" |
@@ -710,7 +710,7 @@ discard block |
||
710 | 710 | <p> |
711 | 711 | "; |
712 | 712 | |
713 | - if (!$filter || !$ignore_poster){ |
|
713 | + if (!$filter || !$ignore_poster) { |
|
714 | 714 | $posttext = $post->content; |
715 | 715 | |
716 | 716 | // If the creator of this post has a signature and |
@@ -718,7 +718,7 @@ discard block |
||
718 | 718 | // user has signatures enabled: show it |
719 | 719 | // |
720 | 720 | $posttext = output_transform($posttext, $options); |
721 | - if ($post->signature && (!$logged_in_user || !$logged_in_user->prefs->hide_signatures)){ |
|
721 | + if ($post->signature && (!$logged_in_user || !$logged_in_user->prefs->hide_signatures)) { |
|
722 | 722 | $sig = output_transform($user->prefs->signature, $options); |
723 | 723 | $posttext .= "<hr>$sig\n"; |
724 | 724 | } |
@@ -752,10 +752,10 @@ discard block |
||
752 | 752 | } |
753 | 753 | if (($controls == FORUM_CONTROLS) && (can_reply($thread, $forum, $logged_in_user))) { |
754 | 754 | echo " "; |
755 | - $url = "forum_reply.php?thread=" . $thread->id . "&post=" . $post->id . "&no_quote=1#input"; |
|
755 | + $url = "forum_reply.php?thread=".$thread->id."&post=".$post->id."&no_quote=1#input"; |
|
756 | 756 | // "Reply" is used as a verb |
757 | 757 | show_button($url, tra("Reply"), tra("Post a reply to this message")); |
758 | - $url = "forum_reply.php?thread=" . $thread->id . "&post=" . $post->id . "#input"; |
|
758 | + $url = "forum_reply.php?thread=".$thread->id."&post=".$post->id."#input"; |
|
759 | 759 | // "Quote" is used as a verb |
760 | 760 | show_button($url, tra("Quote"), tra("Post a reply by quoting this message")); |
761 | 761 | } |
@@ -777,7 +777,7 @@ discard block |
||
777 | 777 | $content = output_transform($post->content, $options); |
778 | 778 | $when = time_diff_str($post->timestamp, time()); |
779 | 779 | $user = BoincUser::lookup_id($post->user); |
780 | - if (!$user){ |
|
780 | + if (!$user) { |
|
781 | 781 | return; |
782 | 782 | } |
783 | 783 | |
@@ -791,10 +791,10 @@ discard block |
||
791 | 791 | switch ($forum->parent_type) { |
792 | 792 | case 0: |
793 | 793 | $category = BoincCategory::lookup_id($forum->category); |
794 | - $title= forum_title($category, $forum, $thread, true); |
|
794 | + $title = forum_title($category, $forum, $thread, true); |
|
795 | 795 | break; |
796 | 796 | case 1: |
797 | - $title= team_forum_title($forum); |
|
797 | + $title = team_forum_title($forum); |
|
798 | 798 | break; |
799 | 799 | } |
800 | 800 | row_array([ |
@@ -833,9 +833,9 @@ discard block |
||
833 | 833 | function post_rules() { |
834 | 834 | if (defined('FORUM_RULES')) return FORUM_RULES; |
835 | 835 | if (function_exists("project_forum_post_rules")) { |
836 | - $project_rules=project_forum_post_rules(); |
|
836 | + $project_rules = project_forum_post_rules(); |
|
837 | 837 | } else { |
838 | - $project_rules=""; |
|
838 | + $project_rules = ""; |
|
839 | 839 | } |
840 | 840 | return sprintf(" |
841 | 841 | <ul> |
@@ -864,7 +864,7 @@ discard block |
||
864 | 864 | ); |
865 | 865 | } |
866 | 866 | |
867 | -function post_warning($forum=null) { |
|
867 | +function post_warning($forum = null) { |
|
868 | 868 | $x = '<p><div style="text-align:left">'; |
869 | 869 | |
870 | 870 | // let projects add extra instructions in specific forums, |
@@ -950,7 +950,7 @@ discard block |
||
950 | 950 | $content = substr($content, 0, 64000); |
951 | 951 | $content = BoincDb::escape_string($content); |
952 | 952 | $now = time(); |
953 | - $sig = $signature?1:0; |
|
953 | + $sig = $signature ? 1 : 0; |
|
954 | 954 | $id = BoincPost::insert("(thread, user, timestamp, content, modified, parent_post, score, votes, signature, hidden) values ($thread->id, $user->id, $now, '$content', 0, $parent_id, 0, 0, $sig, 0)"); |
955 | 955 | if (!$id) { |
956 | 956 | $forum_error = "Failed to add post to DB."; |
@@ -970,7 +970,7 @@ discard block |
||
970 | 970 | // |
971 | 971 | function update_thread_timestamp($thread) { |
972 | 972 | $posts = BoincPost::enum("thread=$thread->id and hidden=0 order by timestamp desc limit 1"); |
973 | - if (count($posts)>0) { |
|
973 | + if (count($posts) > 0) { |
|
974 | 974 | $post = $posts[0]; |
975 | 975 | $thread->update("timestamp=$post->timestamp"); |
976 | 976 | } |
@@ -978,7 +978,7 @@ discard block |
||
978 | 978 | |
979 | 979 | function update_forum_timestamp($forum) { |
980 | 980 | $threads = BoincThread::enum("forum=$forum->id and hidden=0 order by timestamp desc limit 1"); |
981 | - if (count($threads)>0) { |
|
981 | + if (count($threads) > 0) { |
|
982 | 982 | $thread = $threads[0]; |
983 | 983 | $forum->update("timestamp=$thread->timestamp"); |
984 | 984 | } |
@@ -1001,7 +1001,7 @@ discard block |
||
1001 | 1001 | if (is_news_forum($forum) && !$export) { |
1002 | 1002 | $status = 1; |
1003 | 1003 | } |
1004 | - $id = BoincThread::insert("(forum, owner, status, title, timestamp, views, replies, activity, sufferers, score, votes, create_time, hidden, sticky, locked) values ($forum->id, $user->id, $status, '$title', $now, 0, -1, 0, 0, 0, 0, $now, 0, 0, 0)"); |
|
1004 | + $id = BoincThread::insert("(forum, owner, status, title, timestamp, views, replies, activity, sufferers, score, votes, create_time, hidden, sticky, locked) values ($forum->id, $user->id, $status, '$title', $now, 0, -1, 0, 0, 0, 0, $now, 0, 0, 0)"); |
|
1005 | 1005 | if (!$id) { |
1006 | 1006 | $forum_error = "Failed to add thread to DB."; |
1007 | 1007 | return null; |
@@ -1130,22 +1130,22 @@ discard block |
||
1130 | 1130 | // $sticky - bool (not directly passed to SQL) |
1131 | 1131 | // |
1132 | 1132 | function get_forum_threads( |
1133 | - $forumID, $start=-1, $nRec=-1, $sort_style=MODIFIED_NEW, |
|
1133 | + $forumID, $start = -1, $nRec = -1, $sort_style = MODIFIED_NEW, |
|
1134 | 1134 | $show_hidden = 0, $sticky = 1 |
1135 | 1135 | ) { |
1136 | 1136 | //if (! (is_numeric($forumID) && is_numeric($min) && is_numeric($nRec))) { |
1137 | 1137 | // return NULL; // Something is wrong here. |
1138 | 1138 | //} |
1139 | 1139 | |
1140 | - $sql = 'forum = ' . $forumID ; |
|
1140 | + $sql = 'forum = '.$forumID; |
|
1141 | 1141 | $stickysql = ""; |
1142 | - if ($sticky){ |
|
1142 | + if ($sticky) { |
|
1143 | 1143 | $stickysql = "sticky DESC, "; |
1144 | 1144 | } |
1145 | 1145 | if (!$show_hidden) { |
1146 | 1146 | $sql .= ' AND hidden = 0'; |
1147 | 1147 | } |
1148 | - switch($sort_style) { |
|
1148 | + switch ($sort_style) { |
|
1149 | 1149 | case MODIFIED_NEW: |
1150 | 1150 | $sql .= ' ORDER BY '.$stickysql.'timestamp DESC'; |
1151 | 1151 | break; |
@@ -1198,7 +1198,7 @@ discard block |
||
1198 | 1198 | if (!$show_hidden) { |
1199 | 1199 | $sql .= ' AND hidden = 0'; |
1200 | 1200 | } |
1201 | - switch($sort_style) { |
|
1201 | + switch ($sort_style) { |
|
1202 | 1202 | case CREATE_TIME_NEW: |
1203 | 1203 | $sql .= ' ORDER BY timestamp desc'; |
1204 | 1204 | break; |
@@ -1220,7 +1220,7 @@ discard block |
||
1220 | 1220 | // |
1221 | 1221 | function show_post_moderation_links( |
1222 | 1222 | $config, $logged_in_user, $post, $forum, $tokens |
1223 | -){ |
|
1223 | +) { |
|
1224 | 1224 | $moderators_allowed_to_ban = parse_bool($config, "moderators_allowed_to_ban"); |
1225 | 1225 | $moderators_vote_to_ban = parse_bool($config, "moderators_vote_to_ban"); |
1226 | 1226 | |
@@ -1283,9 +1283,9 @@ discard block |
||
1283 | 1283 | // |
1284 | 1284 | function user_can_create_thread($user, $forum) { |
1285 | 1285 | if ($forum->is_dev_blog) { |
1286 | - return is_admin($user)?'yes':'no'; |
|
1286 | + return is_admin($user) ? 'yes' : 'no'; |
|
1287 | 1287 | } |
1288 | - return $user ?'yes':'login'; |
|
1288 | + return $user ? 'yes' : 'login'; |
|
1289 | 1289 | } |
1290 | 1290 | |
1291 | 1291 | function check_post_access($user, $forum) { |
@@ -1311,14 +1311,14 @@ discard block |
||
1311 | 1311 | // We do not tell the (ab)user how much this is - |
1312 | 1312 | // no need to make it easy for them to break the system. |
1313 | 1313 | // |
1314 | - if ($user->total_credit<$forum->post_min_total_credit || $user->expavg_credit<$forum->post_min_expavg_credit) { |
|
1314 | + if ($user->total_credit < $forum->post_min_total_credit || $user->expavg_credit < $forum->post_min_expavg_credit) { |
|
1315 | 1315 | error_page(tra("To create a new thread in %1 you must have a certain level of average credit. This is to protect against abuse of the system.", $forum->title)); |
1316 | 1316 | } |
1317 | 1317 | |
1318 | 1318 | // If the user is posting faster than forum regulations allow |
1319 | 1319 | // Tell the user to wait a while before creating any more posts |
1320 | 1320 | // |
1321 | - if (time()-$user->prefs->last_post <$forum->post_min_interval) { |
|
1321 | + if (time() - $user->prefs->last_post < $forum->post_min_interval) { |
|
1322 | 1322 | error_page(tra("You cannot create threads right now. Please wait before trying again. This is to protect against abuse of the system.")); |
1323 | 1323 | } |
1324 | 1324 | } |
@@ -1344,10 +1344,10 @@ discard block |
||
1344 | 1344 | // - edit their posts at any time |
1345 | 1345 | // - hide/unhide/move threads and posts |
1346 | 1346 | |
1347 | -function is_moderator($user, $forum=null) { |
|
1347 | +function is_moderator($user, $forum = null) { |
|
1348 | 1348 | if (!$user) return false; |
1349 | 1349 | BoincForumPrefs::lookup($user); |
1350 | - $type = $forum?$forum->parent_type:0; |
|
1350 | + $type = $forum ? $forum->parent_type : 0; |
|
1351 | 1351 | switch ($type) { |
1352 | 1352 | case 0: |
1353 | 1353 | if ($user->prefs->privilege(S_MODERATOR)) return true; |
@@ -1364,7 +1364,7 @@ discard block |
||
1364 | 1364 | return false; |
1365 | 1365 | } |
1366 | 1366 | |
1367 | -function thread_list_header($subscriptions=false) { |
|
1367 | +function thread_list_header($subscriptions = false) { |
|
1368 | 1368 | if ($subscriptions) { |
1369 | 1369 | $x = [ |
1370 | 1370 | tra("Thread"), |
@@ -1387,13 +1387,13 @@ discard block |
||
1387 | 1387 | // show a 1-line summary of thread and its forum. |
1388 | 1388 | // Used for search results and subscription list |
1389 | 1389 | // |
1390 | -function thread_list_item($thread, $user, $subscriptions=false) { |
|
1390 | +function thread_list_item($thread, $user, $subscriptions = false) { |
|
1391 | 1391 | $thread_forum = BoincForum::lookup_id($thread->forum); |
1392 | 1392 | if (!$thread_forum) return; |
1393 | 1393 | if (!is_forum_visible_to_user($thread_forum, $user)) return; |
1394 | 1394 | $owner = BoincUser::lookup_id($thread->owner); |
1395 | 1395 | if (!$owner) return; |
1396 | - switch($thread_forum->parent_type) { |
|
1396 | + switch ($thread_forum->parent_type) { |
|
1397 | 1397 | case 0: |
1398 | 1398 | $category = BoincCategory::lookup_id($thread_forum->category); |
1399 | 1399 | $title = forum_title($category, $thread_forum, $thread, true); |
@@ -1414,7 +1414,7 @@ discard block |
||
1414 | 1414 | } else { |
1415 | 1415 | $x = [ |
1416 | 1416 | $title, |
1417 | - $thread->replies+1, |
|
1417 | + $thread->replies + 1, |
|
1418 | 1418 | user_links($owner), |
1419 | 1419 | $thread->views, |
1420 | 1420 | time_diff_str($thread->timestamp, time()) |
@@ -1451,13 +1451,13 @@ discard block |
||
1451 | 1451 | |
1452 | 1452 | function subscribed_thread_web_line($notify) { |
1453 | 1453 | $thread = BoincThread::lookup_id($notify->opaque); |
1454 | - return tra("New posts in the thread %1","<a href=forum_thread.php?id=$thread->id>$thread->title</a>"); |
|
1454 | + return tra("New posts in the thread %1", "<a href=forum_thread.php?id=$thread->id>$thread->title</a>"); |
|
1455 | 1455 | } |
1456 | 1456 | |
1457 | 1457 | function subscribed_thread_rss($notify) { |
1458 | 1458 | $thread = BoincThread::lookup_id($notify->opaque); |
1459 | 1459 | $title = tra("New posts in subscribed thread"); |
1460 | - $msg = tra("There are new posts in the thread '%1'",$thread->title); |
|
1460 | + $msg = tra("There are new posts in the thread '%1'", $thread->title); |
|
1461 | 1461 | $url = secure_url_base()."forum_thread.php?id=$thread->id"; |
1462 | 1462 | return [$title, $msg, $url]; |
1463 | 1463 | } |
@@ -1469,13 +1469,13 @@ discard block |
||
1469 | 1469 | |
1470 | 1470 | function subscribed_forum_web_line($notify) { |
1471 | 1471 | $forum = BoincForum::lookup_id($notify->opaque); |
1472 | - return tra("New threads in the forum %1","<a href=forum_forum.php?id=$forum->id>$forum->title</a>"); |
|
1472 | + return tra("New threads in the forum %1", "<a href=forum_forum.php?id=$forum->id>$forum->title</a>"); |
|
1473 | 1473 | } |
1474 | 1474 | |
1475 | 1475 | function subscribed_forum_rss($notify) { |
1476 | 1476 | $forum = BoincForum::lookup_id($notify->opaque); |
1477 | 1477 | $title = tra("New posts in subscribed forum"); |
1478 | - $msg = tra("There are new threads in the forum '%1'",$forum->title); |
|
1478 | + $msg = tra("There are new threads in the forum '%1'", $forum->title); |
|
1479 | 1479 | $url = secure_url_base()."forum_forum.php?id=$forum->id"; |
1480 | 1480 | return [$title, $msg, $url]; |
1481 | 1481 | } |
@@ -556,7 +556,7 @@ |
||
556 | 556 | function print_prefs_form( |
557 | 557 | $action, $subset, $venue, $user, $prefs, $cols, $error=false, |
558 | 558 | $project_error=false |
559 | -){ |
|
559 | +) { |
|
560 | 560 | if ($action == "add") { |
561 | 561 | $script = "add_venue.php"; |
562 | 562 | $submit_value = tra("Add preferences"); |
@@ -108,7 +108,7 @@ discard block |
||
108 | 108 | new NUM_SPEC(tra("% of the CPUs"), 1, 100, 0) |
109 | 109 | ), |
110 | 110 | new PREF_NUM( |
111 | - tra("Use at most") ."<br><font size=-2>Requires BOINC 7.20.3+</font>", |
|
111 | + tra("Use at most")."<br><font size=-2>Requires BOINC 7.20.3+</font>", |
|
112 | 112 | // xgettext:no-php-format |
113 | 113 | tra("Suspend/resume computing every few seconds to reduce CPU temperature and energy usage. Example: 75% means compute for 3 seconds, wait for 1 second, and repeat."), |
114 | 114 | "niu_cpu_usage_limit", |
@@ -295,9 +295,9 @@ discard block |
||
295 | 295 | $dp->disk_max_used_pct = parse_config($config, "<default_disk_max_used_pct>"); |
296 | 296 | $dp->disk_min_free_gb = parse_config($config, "<default_disk_min_free_gb>"); |
297 | 297 | // set some defaults if not found |
298 | - if (!$dp->disk_max_used_gb) $dp->disk_max_used_gb = 0; // no limit |
|
298 | + if (!$dp->disk_max_used_gb) $dp->disk_max_used_gb = 0; // no limit |
|
299 | 299 | if (!$dp->disk_max_used_pct) $dp->disk_max_used_pct = 90; // 90 percent |
300 | - if (!$dp->disk_min_free_gb) $dp->disk_min_free_gb = 1; // 1 GB |
|
300 | + if (!$dp->disk_min_free_gb) $dp->disk_min_free_gb = 1; // 1 GB |
|
301 | 301 | // set mininimum free space scheduler allows |
302 | 302 | // - depends on which scheduler is running |
303 | 303 | $dp->new_sched_flag = 1; |
@@ -323,7 +323,7 @@ discard block |
||
323 | 323 | global $text; |
324 | 324 | global $venue_name; |
325 | 325 | |
326 | - switch($name) { |
|
326 | + switch ($name) { |
|
327 | 327 | case "venue": |
328 | 328 | if (array_key_exists("name", $attrs)) { |
329 | 329 | $venue_name = $attrs["name"]; |
@@ -373,7 +373,7 @@ discard block |
||
373 | 373 | return; |
374 | 374 | } |
375 | 375 | } |
376 | - switch($name) { |
|
376 | + switch ($name) { |
|
377 | 377 | case "venue": |
378 | 378 | $top_parse_result->$venue_name = $parse_result; |
379 | 379 | $parse_result = $top_parse_result; |
@@ -547,7 +547,7 @@ discard block |
||
547 | 547 | } |
548 | 548 | } |
549 | 549 | |
550 | -function print_prefs_display_global($user, $columns=false) { |
|
550 | +function print_prefs_display_global($user, $columns = false) { |
|
551 | 551 | $global_prefs = prefs_parse_global($user->global_prefs); |
552 | 552 | |
553 | 553 | echo tra("These settings apply to all computers using this account except") |
@@ -557,7 +557,7 @@ discard block |
||
557 | 557 | .tra("Android devices") |
558 | 558 | ."</ul> |
559 | 559 | "; |
560 | - $switch_link = " <font size=\"-1\"><a href=prefs.php?subset=global&cols=". (int)!$columns .">".tra("(Switch view)")."</a></font>"; |
|
560 | + $switch_link = " <font size=\"-1\"><a href=prefs.php?subset=global&cols=".(int)!$columns.">".tra("(Switch view)")."</a></font>"; |
|
561 | 561 | if ($columns) { |
562 | 562 | echo "<h3>".tra("Combined preferences").$switch_link."</h3>"; |
563 | 563 | start_table(); |
@@ -594,9 +594,9 @@ discard block |
||
594 | 594 | // otherwise false |
595 | 595 | // |
596 | 596 | function print_prefs_form( |
597 | - $action, $subset, $venue, $user, $prefs, $cols, $error=false, |
|
598 | - $project_error=false |
|
599 | -){ |
|
597 | + $action, $subset, $venue, $user, $prefs, $cols, $error = false, |
|
598 | + $project_error = false |
|
599 | +) { |
|
600 | 600 | if ($action == "add") { |
601 | 601 | $script = "add_venue.php"; |
602 | 602 | $submit_value = tra("Add preferences"); |
@@ -636,7 +636,7 @@ discard block |
||
636 | 636 | // |
637 | 637 | // Functions to display preference subsets as forms |
638 | 638 | // |
639 | -function prefs_form_global($user, $prefs, $error=false) { |
|
639 | +function prefs_form_global($user, $prefs, $error = false) { |
|
640 | 640 | global $in_use_prefs; |
641 | 641 | global $not_in_use_prefs; |
642 | 642 | global $job_prefs; |
@@ -673,9 +673,9 @@ discard block |
||
673 | 673 | // |
674 | 674 | function prefs_form_radio_buttons($name, $yesno) { |
675 | 675 | $rb = tra("yes")." <input type=radio name=$name value=yes " |
676 | - .($yesno?"checked":"") |
|
676 | + .($yesno ? "checked" : "") |
|
677 | 677 | ."> ".tra("no")." <input type=radio name=$name value=no " |
678 | - .($yesno?"":"checked") |
|
678 | + .($yesno ? "" : "checked") |
|
679 | 679 | .">\n"; |
680 | 680 | return $rb; |
681 | 681 | } |
@@ -694,12 +694,12 @@ discard block |
||
694 | 694 | } |
695 | 695 | function venue_show($user) { |
696 | 696 | $venue = $user->venue; |
697 | - if ($venue =='') $venue = '---'; |
|
697 | + if ($venue == '') $venue = '---'; |
|
698 | 698 | tooltip_row2(VENUE_TOOLTIP, VENUE_DESC, $venue); |
699 | 699 | } |
700 | 700 | |
701 | 701 | function venue_form($user) { |
702 | - $n=$h=$w=$s=$m=''; |
|
702 | + $n = $h = $w = $s = $m = ''; |
|
703 | 703 | if ($user->venue == '') $n = 'selected'; |
704 | 704 | if ($user->venue == 'home') $h = 'selected'; |
705 | 705 | if ($user->venue == 'work') $w = 'selected'; |
@@ -757,7 +757,7 @@ discard block |
||
757 | 757 | // |
758 | 758 | // convert prefs from structure to XML |
759 | 759 | // |
760 | -function global_prefs_make_xml($prefs, $primary=true) { |
|
760 | +function global_prefs_make_xml($prefs, $primary = true) { |
|
761 | 761 | global $in_use_prefs; |
762 | 762 | global $not_in_use_prefs; |
763 | 763 | global $job_prefs; |
@@ -500,9 +500,9 @@ discard block |
||
500 | 500 | // @return String A human readable error message |
501 | 501 | // @param Integer $x An error number |
502 | 502 | // |
503 | -function windows_error_code_str($x){ |
|
503 | +function windows_error_code_str($x) { |
|
504 | 504 | $h=int2hex($x); |
505 | - switch($h){ |
|
505 | + switch($h) { |
|
506 | 506 | case "0xC0000005": return "STATUS_ACCESS_VIOLATION"; |
507 | 507 | case "0xC000001D": return "STATUS_ILLEGAL_INSTRUCTION"; |
508 | 508 | case "0xC0000094": return "STATUS_INTEGER_DIVIDE_BY_ZERO"; |
@@ -523,10 +523,10 @@ discard block |
||
523 | 523 | // @return String A human readable error message |
524 | 524 | // @param Integer $x An error number |
525 | 525 | // |
526 | -function error_code_str($x){ |
|
526 | +function error_code_str($x) { |
|
527 | 527 | // severe Windows error numbers are always large negative integers |
528 | 528 | if ($x<-400) return windows_error_code_str($x); |
529 | - switch($x){ |
|
529 | + switch($x) { |
|
530 | 530 | case 0: return ""; |
531 | 531 | case 192: return "EXIT_STATEFILE_WRITE"; |
532 | 532 | case 193: return "EXIT_SIGNAL"; |
@@ -53,9 +53,9 @@ discard block |
||
53 | 53 | return $platforms[$id]; |
54 | 54 | } |
55 | 55 | |
56 | -function anon_platform_string($result, $rsc_name=null) { |
|
56 | +function anon_platform_string($result, $rsc_name = null) { |
|
57 | 57 | $app = get_app($result->appid); |
58 | - $n = $app->user_friendly_name."<br>". tra("Anonymous platform"); |
|
58 | + $n = $app->user_friendly_name."<br>".tra("Anonymous platform"); |
|
59 | 59 | if ($rsc_name) { |
60 | 60 | $n .= " ($rsc_name)"; |
61 | 61 | } |
@@ -102,7 +102,7 @@ discard block |
||
102 | 102 | return $string_to_show; |
103 | 103 | } |
104 | 104 | if ($result->server_state <> RESULT_SERVER_STATE_OVER) return "---"; |
105 | - switch($result->outcome) { |
|
105 | + switch ($result->outcome) { |
|
106 | 106 | case RESULT_OUTCOME_SUCCESS: |
107 | 107 | switch ($result->validate_state) { |
108 | 108 | case VALIDATE_STATE_INIT: |
@@ -240,7 +240,7 @@ discard block |
||
240 | 240 | ) { |
241 | 241 | return tra("Not started by deadline - canceled"); |
242 | 242 | } |
243 | - switch($result->client_state) { |
|
243 | + switch ($result->client_state) { |
|
244 | 244 | case RESULT_FILES_DOWNLOADING: return tra("Error while downloading"); |
245 | 245 | case RESULT_FILES_DOWNLOADED: |
246 | 246 | case RESULT_COMPUTE_ERROR: return tra("Error while computing"); |
@@ -259,7 +259,7 @@ discard block |
||
259 | 259 | } |
260 | 260 | |
261 | 261 | function result_server_state_string($result) { |
262 | - switch($result->server_state) { |
|
262 | + switch ($result->server_state) { |
|
263 | 263 | case RESULT_SERVER_STATE_INACTIVE: return tra("Inactive"); |
264 | 264 | case RESULT_SERVER_STATE_UNSENT: return tra("Unsent"); |
265 | 265 | case RESULT_SERVER_STATE_IN_PROGRESS: return tra("In progress"); |
@@ -269,7 +269,7 @@ discard block |
||
269 | 269 | } |
270 | 270 | |
271 | 271 | function result_outcome_string($result) { |
272 | - switch($result->outcome) { |
|
272 | + switch ($result->outcome) { |
|
273 | 273 | case RESULT_OUTCOME_INIT: return "---"; |
274 | 274 | case RESULT_OUTCOME_SUCCESS: return tra("Success"); |
275 | 275 | case RESULT_OUTCOME_COULDNT_SEND: return tra("Couldn't send"); |
@@ -287,7 +287,7 @@ discard block |
||
287 | 287 | } |
288 | 288 | |
289 | 289 | function result_client_state_string($result) { |
290 | - switch($result->client_state) { |
|
290 | + switch ($result->client_state) { |
|
291 | 291 | case RESULT_NEW: return tra("New"); |
292 | 292 | case RESULT_FILES_DOWNLOADING: return tra("Downloading"); |
293 | 293 | case RESULT_FILES_DOWNLOADED: return tra("Processing"); |
@@ -305,7 +305,7 @@ discard block |
||
305 | 305 | } |
306 | 306 | |
307 | 307 | function validate_state_str($result) { |
308 | - switch($result->validate_state) { |
|
308 | + switch ($result->validate_state) { |
|
309 | 309 | case VALIDATE_STATE_INIT: return tra("Initial"); |
310 | 310 | case VALIDATE_STATE_VALID: return tra("Valid"); |
311 | 311 | case VALIDATE_STATE_INVALID: |
@@ -321,7 +321,7 @@ discard block |
||
321 | 321 | } |
322 | 322 | |
323 | 323 | function assimilate_state_str($s) { |
324 | - switch($s) { |
|
324 | + switch ($s) { |
|
325 | 325 | case ASSIMILATE_INIT: return "Initial"; |
326 | 326 | case ASSIMILATE_READY: return "Ready to assimilate"; |
327 | 327 | case ASSIMILATE_DONE: return "Assimilated"; |
@@ -330,7 +330,7 @@ discard block |
||
330 | 330 | } |
331 | 331 | |
332 | 332 | function file_delete_state_str($s) { |
333 | - switch($s) { |
|
333 | + switch ($s) { |
|
334 | 334 | case FILE_DELETE_INIT: return "Initial"; |
335 | 335 | case FILE_DELETE_READY: return "Ready to delete"; |
336 | 336 | case FILE_DELETE_DONE: return "Deleted"; |
@@ -342,7 +342,7 @@ discard block |
||
342 | 342 | // convert WU error bitmask to str. |
343 | 343 | // If $color, add HTML red color |
344 | 344 | // |
345 | -function wu_error_mask_str($s, $color=false) { |
|
345 | +function wu_error_mask_str($s, $color = false) { |
|
346 | 346 | $x = ""; |
347 | 347 | if ($s & WU_ERROR_COULDNT_SEND_RESULT) { |
348 | 348 | $x = $x." ".tra("Couldn't send result"); |
@@ -456,10 +456,10 @@ discard block |
||
456 | 456 | if ($result->received_time) { |
457 | 457 | $r = time_str($result->received_time); |
458 | 458 | } else if ($result->report_deadline) { |
459 | - if ($result->report_deadline>time()) { |
|
460 | - $r = "<font color='#33cc33'>" . time_str($result->report_deadline) . "</font>"; |
|
459 | + if ($result->report_deadline > time()) { |
|
460 | + $r = "<font color='#33cc33'>".time_str($result->report_deadline)."</font>"; |
|
461 | 461 | } else { |
462 | - $r = "<font color='#ff3333'>" . time_str($result->report_deadline) . "</font>"; |
|
462 | + $r = "<font color='#ff3333'>".time_str($result->report_deadline)."</font>"; |
|
463 | 463 | } |
464 | 464 | } else { |
465 | 465 | $r = "---"; |
@@ -520,7 +520,7 @@ discard block |
||
520 | 520 | // @param Integer $dec A signed integer |
521 | 521 | // |
522 | 522 | function int2hex($dec) { |
523 | - return "0x".strtoupper(substr(sprintf("%08x",$dec), -8)); |
|
523 | + return "0x".strtoupper(substr(sprintf("%08x", $dec), -8)); |
|
524 | 524 | } |
525 | 525 | |
526 | 526 | // Decode a windows error number into semi-human-readable, |
@@ -530,9 +530,9 @@ discard block |
||
530 | 530 | // @return String A human readable error message |
531 | 531 | // @param Integer $x An error number |
532 | 532 | // |
533 | -function windows_error_code_str($x){ |
|
534 | - $h=int2hex($x); |
|
535 | - switch($h){ |
|
533 | +function windows_error_code_str($x) { |
|
534 | + $h = int2hex($x); |
|
535 | + switch ($h) { |
|
536 | 536 | case "0xC0000005": return "STATUS_ACCESS_VIOLATION"; |
537 | 537 | case "0xC000001D": return "STATUS_ILLEGAL_INSTRUCTION"; |
538 | 538 | case "0xC0000094": return "STATUS_INTEGER_DIVIDE_BY_ZERO"; |
@@ -553,10 +553,10 @@ discard block |
||
553 | 553 | // @return String A human readable error message |
554 | 554 | // @param Integer $x An error number |
555 | 555 | // |
556 | -function error_code_str($x){ |
|
556 | +function error_code_str($x) { |
|
557 | 557 | // severe Windows error numbers are always large negative integers |
558 | - if ($x<-400) return windows_error_code_str($x); |
|
559 | - switch($x){ |
|
558 | + if ($x < -400) return windows_error_code_str($x); |
|
559 | + switch ($x) { |
|
560 | 560 | case 0: return ""; |
561 | 561 | case 192: return "EXIT_STATEFILE_WRITE"; |
562 | 562 | case 193: return "EXIT_SIGNAL"; |
@@ -717,7 +717,7 @@ discard block |
||
717 | 717 | return $x." (".int2hex($x).") ".error_code_str($x); |
718 | 718 | } |
719 | 719 | |
720 | -function show_result($result, $show_outfile_links=false) { |
|
720 | +function show_result($result, $show_outfile_links = false) { |
|
721 | 721 | start_table(); |
722 | 722 | row2(tra("Name"), $result->name); |
723 | 723 | row2(tra("Workunit"), "<a href=\"workunit.php?wuid=$result->workunitid\">$result->workunitid</a>"); |
@@ -769,7 +769,7 @@ discard block |
||
769 | 769 | echo "<h3>".tra("Stderr output")."</h3> <pre>" |
770 | 770 | .htmlspecialchars( |
771 | 771 | $result->stderr_out, |
772 | - ENT_QUOTES | (defined('ENT_SUBSTITUTE')?ENT_SUBSTITUTE:0), |
|
772 | + ENT_QUOTES|(defined('ENT_SUBSTITUTE') ?ENT_SUBSTITUTE:0), |
|
773 | 773 | 'utf-8' |
774 | 774 | ) |
775 | 775 | ."</pre>" |
@@ -785,7 +785,7 @@ discard block |
||
785 | 785 | |
786 | 786 | $apps = BoincApp::enum('deprecated=0 ORDER BY user_friendly_name'); |
787 | 787 | |
788 | - for ($i=0; $i<NSTATES; $i++) { |
|
788 | + for ($i = 0; $i < NSTATES; $i++) { |
|
789 | 789 | $state_count[$i] = 0; |
790 | 790 | } |
791 | 791 | foreach ($apps as $app) { |
@@ -828,7 +828,7 @@ discard block |
||
828 | 828 | $x .= "<a href=$url>".tra("Next")." ".$info->results_per_page."</a>"; |
829 | 829 | } |
830 | 830 | $x .= "<br>".tra("State").": "; |
831 | - for ($i=0; $i<NSTATES; $i++) { |
|
831 | + for ($i = 0; $i < NSTATES; $i++) { |
|
832 | 832 | if ($i) $x .= " · "; |
833 | 833 | if ($info->state == $i) { |
834 | 834 | $x .= $state_name[$i]; |
@@ -505,7 +505,7 @@ |
||
505 | 505 | geoip_close($gi); |
506 | 506 | |
507 | 507 | if ($selected_country=="") $selected_country="None"; |
508 | - if ($selected_country=="None" and $geoip_country!=""){ |
|
508 | + if ($selected_country=="None" and $geoip_country!="") { |
|
509 | 509 | $selected_country=$geoip_country; |
510 | 510 | } |
511 | 511 |
@@ -257,7 +257,7 @@ discard block |
||
257 | 257 | "Zimbabwe" |
258 | 258 | ); |
259 | 259 | |
260 | -$country_to_iso3166_2 = array ( |
|
260 | +$country_to_iso3166_2 = array( |
|
261 | 261 | "Afghanistan" => "af", |
262 | 262 | "Albania" => "al", |
263 | 263 | "Algeria" => "dz", |
@@ -493,25 +493,25 @@ discard block |
||
493 | 493 | |
494 | 494 | // return a list of country options for a <select> |
495 | 495 | // |
496 | -function country_select_options($selected_country="None") { |
|
496 | +function country_select_options($selected_country = "None") { |
|
497 | 497 | global $countries; |
498 | 498 | |
499 | 499 | require_once("../inc/geoip.inc"); |
500 | 500 | |
501 | 501 | // See if we can find the user's country and select it as default: |
502 | 502 | // |
503 | - $gi = geoip_open("../inc/GeoIP.dat",GEOIP_STANDARD); |
|
504 | - $geoip_country = geoip_country_name_by_addr($gi,$_SERVER["REMOTE_ADDR"]); |
|
503 | + $gi = geoip_open("../inc/GeoIP.dat", GEOIP_STANDARD); |
|
504 | + $geoip_country = geoip_country_name_by_addr($gi, $_SERVER["REMOTE_ADDR"]); |
|
505 | 505 | geoip_close($gi); |
506 | 506 | |
507 | - if ($selected_country=="") $selected_country="None"; |
|
508 | - if ($selected_country=="None" and $geoip_country!=""){ |
|
509 | - $selected_country=$geoip_country; |
|
507 | + if ($selected_country == "") $selected_country = "None"; |
|
508 | + if ($selected_country == "None" and $geoip_country != "") { |
|
509 | + $selected_country = $geoip_country; |
|
510 | 510 | } |
511 | 511 | |
512 | 512 | $x = ""; |
513 | 513 | foreach ($countries as $country) { |
514 | - $selected = ($selected_country == $country ? "selected":""); |
|
514 | + $selected = ($selected_country == $country ? "selected" : ""); |
|
515 | 515 | $x .= "<option value=\"$country\" $selected>$country</option>\n"; |
516 | 516 | } |
517 | 517 | return $x; |