@@ -88,18 +88,18 @@ |
||
| 88 | 88 | $errno = 0; |
| 89 | 89 | $errstr = ''; |
| 90 | 90 | |
| 91 | - if (false === $this->socket->fsockopen('ssl://' . self::RECAPTCHA_HOST, 443, $errno, $errstr, 30)) { |
|
| 91 | + if (false === $this->socket->fsockopen('ssl://'.self::RECAPTCHA_HOST, 443, $errno, $errstr, 30)) { |
|
| 92 | 92 | return self::BAD_REQUEST; |
| 93 | 93 | } |
| 94 | 94 | |
| 95 | 95 | $content = $params->toQueryString(); |
| 96 | 96 | |
| 97 | - $request = "POST " . self::SITE_VERIFY_PATH . " HTTP/1.1\r\n"; |
|
| 98 | - $request .= "Host: " . self::RECAPTCHA_HOST . "\r\n"; |
|
| 97 | + $request = "POST ".self::SITE_VERIFY_PATH." HTTP/1.1\r\n"; |
|
| 98 | + $request .= "Host: ".self::RECAPTCHA_HOST."\r\n"; |
|
| 99 | 99 | $request .= "Content-Type: application/x-www-form-urlencoded\r\n"; |
| 100 | - $request .= "Content-length: " . strlen($content) . "\r\n"; |
|
| 100 | + $request .= "Content-length: ".strlen($content)."\r\n"; |
|
| 101 | 101 | $request .= "Connection: close\r\n\r\n"; |
| 102 | - $request .= $content . "\r\n\r\n"; |
|
| 102 | + $request .= $content."\r\n\r\n"; |
|
| 103 | 103 | |
| 104 | 104 | $this->socket->fwrite($request); |
| 105 | 105 | $response = ''; |
@@ -50,7 +50,7 @@ discard block |
||
| 50 | 50 | } |
| 51 | 51 | |
| 52 | 52 | function send_friend_request_email($src_user, $dest_user, $msg) { |
| 53 | - $message = " |
|
| 53 | + $message = " |
|
| 54 | 54 | $src_user->name has added you as a friend at ".PROJECT.". |
| 55 | 55 | "; |
| 56 | 56 | if (strlen($msg)) { |
@@ -72,7 +72,7 @@ discard block |
||
| 72 | 72 | } |
| 73 | 73 | |
| 74 | 74 | function send_friend_accept_email($dest_user, $src_user, $msg) { |
| 75 | - $message = " |
|
| 75 | + $message = " |
|
| 76 | 76 | $dest_user->name has confirmed you as a friend at ".PROJECT.". |
| 77 | 77 | "; |
| 78 | 78 | if (strlen($msg)) { |
@@ -20,7 +20,7 @@ discard block |
||
| 20 | 20 | // Some of this should be merged with translation.inc |
| 21 | 21 | |
| 22 | 22 | function get_lang_list() { |
| 23 | - if (isset($_COOKIE['lang'])){ |
|
| 23 | + if (isset($_COOKIE['lang'])) { |
|
| 24 | 24 | $language_string = $_COOKIE['lang'].","; |
| 25 | 25 | } else { |
| 26 | 26 | $language_string = ''; |
@@ -28,28 +28,28 @@ discard block |
||
| 28 | 28 | if (isset($_SERVER["HTTP_ACCEPT_LANGUAGE"])) { |
| 29 | 29 | $language_string .= strtolower($_SERVER["HTTP_ACCEPT_LANGUAGE"]); |
| 30 | 30 | } |
| 31 | - $client_languages = explode(",",$language_string); |
|
| 31 | + $client_languages = explode(",", $language_string); |
|
| 32 | 32 | |
| 33 | 33 | $lang_list = array(); |
| 34 | - for ($i=0; $i<sizeof($client_languages); $i++) { |
|
| 35 | - if ((strlen($client_languages[$i])>2) |
|
| 36 | - && (substr($client_languages[$i],2,1)=="_" || substr($client_languages[$i],2,1)=="-")) |
|
| 34 | + for ($i = 0; $i < sizeof($client_languages); $i++) { |
|
| 35 | + if ((strlen($client_languages[$i]) > 2) |
|
| 36 | + && (substr($client_languages[$i], 2, 1) == "_" || substr($client_languages[$i], 2, 1) == "-")) |
|
| 37 | 37 | { |
| 38 | 38 | // If this is defined as primary-secondary, represent it as xx_YY |
| 39 | 39 | // |
| 40 | 40 | $language = substr( |
| 41 | - $client_languages[$i],0,2)."_".strtoupper(substr($client_languages[$i],3,2) |
|
| 41 | + $client_languages[$i], 0, 2)."_".strtoupper(substr($client_languages[$i], 3, 2) |
|
| 42 | 42 | ); |
| 43 | 43 | $lang_list[] = $language; |
| 44 | 44 | |
| 45 | 45 | // And also check for the primary language |
| 46 | 46 | // |
| 47 | - $language = substr($client_languages[$i],0,2); |
|
| 47 | + $language = substr($client_languages[$i], 0, 2); |
|
| 48 | 48 | $lang_list[] = $language; |
| 49 | 49 | } else { |
| 50 | 50 | // else just use xx |
| 51 | 51 | // |
| 52 | - $language = substr($client_languages[$i],0,2); |
|
| 52 | + $language = substr($client_languages[$i], 0, 2); |
|
| 53 | 53 | $lang_list[] = $language; |
| 54 | 54 | } |
| 55 | 55 | } |
@@ -46,7 +46,7 @@ |
||
| 46 | 46 | return; |
| 47 | 47 | } |
| 48 | 48 | |
| 49 | - $news_date=gmdate('D, d M Y H:i:s',$notify->create_time) . ' GMT'; |
|
| 49 | + $news_date = gmdate('D, d M Y H:i:s', $notify->create_time).' GMT'; |
|
| 50 | 50 | echo "<item> |
| 51 | 51 | <title><![CDATA[$title]]></title> |
| 52 | 52 | <guid>".url_base()."_notify_$notify->id</guid> |
@@ -26,7 +26,7 @@ discard block |
||
| 26 | 26 | |
| 27 | 27 | $master_url_enc = urlencode($master_url); |
| 28 | 28 | $response = akismet_request("key=$key&blog=$master_url_enc", "rest.akismet.com", "/1.1/verify-key"); |
| 29 | - if ("valid" == $response[1] ) { |
|
| 29 | + if ("valid" == $response[1]) { |
|
| 30 | 30 | $post = urlencode($post); |
| 31 | 31 | $ip = urlencode($_SERVER['REMOTE_ADDR']); |
| 32 | 32 | $referrer = urlencode($_SERVER['HTTP_REFERER']); |
@@ -56,15 +56,15 @@ discard block |
||
| 56 | 56 | $http_request = "POST $path HTTP/1.0\r\n"; |
| 57 | 57 | $http_request .= "Host: $host\r\n"; |
| 58 | 58 | $http_request .= "Content-Type: application/x-www-form-urlencoded; charset=utf-8\r\n"; |
| 59 | - $http_request .= "Content-Length: " . strlen($request) . "\r\n"; |
|
| 59 | + $http_request .= "Content-Length: ".strlen($request)."\r\n"; |
|
| 60 | 60 | $http_request .= "User-Agent: BOINC | Akismet 1.1\r\n"; |
| 61 | 61 | $http_request .= "\r\n"; |
| 62 | 62 | $http_request .= $request; |
| 63 | 63 | |
| 64 | 64 | $response = ''; |
| 65 | - if( false !== ( $fs = @fsockopen($host, $port, $errno, $errstr, 3) ) ) { |
|
| 65 | + if (false !== ($fs = @fsockopen($host, $port, $errno, $errstr, 3))) { |
|
| 66 | 66 | fwrite($fs, $http_request); |
| 67 | - while ( !feof($fs) ) |
|
| 67 | + while (!feof($fs)) |
|
| 68 | 68 | $response .= fgets($fs, 1160); // One TCP-IP packet |
| 69 | 69 | fclose($fs); |
| 70 | 70 | $response = explode("\r\n\r\n", $response, 2); |
@@ -29,7 +29,7 @@ discard block |
||
| 29 | 29 | if (!$hosts_per_page) { |
| 30 | 30 | $hosts_per_page = 20; |
| 31 | 31 | } |
| 32 | -define ('ITEM_LIMIT', 10000); |
|
| 32 | +define('ITEM_LIMIT', 10000); |
|
| 33 | 33 | |
| 34 | 34 | function get_top_hosts($offset, $sort_by) { |
| 35 | 35 | global $hosts_per_page; |
@@ -52,8 +52,8 @@ discard block |
||
| 52 | 52 | } |
| 53 | 53 | |
| 54 | 54 | $offset = get_int("offset", true); |
| 55 | -if (!$offset) $offset=0; |
|
| 56 | -if ($offset % $hosts_per_page) $offset = 0; |
|
| 55 | +if (!$offset) $offset = 0; |
|
| 56 | +if ($offset%$hosts_per_page) $offset = 0; |
|
| 57 | 57 | |
| 58 | 58 | if ($offset >= ITEM_LIMIT) { |
| 59 | 59 | error_page(tra("Limit exceeded - Sorry, first %1 items only", ITEM_LIMIT)); |
@@ -61,10 +61,10 @@ discard block |
||
| 61 | 61 | |
| 62 | 62 | $cache_args = "sort_by=$sort_by&offset=$offset"; |
| 63 | 63 | $cacheddata = get_cached_data(TOP_PAGES_TTL, $cache_args); |
| 64 | -if ($cacheddata){ |
|
| 64 | +if ($cacheddata) { |
|
| 65 | 65 | $data = unserialize($cacheddata); |
| 66 | 66 | } else { |
| 67 | - $data = get_top_hosts($offset,$sort_by); |
|
| 67 | + $data = get_top_hosts($offset, $sort_by); |
|
| 68 | 68 | set_cached_data(TOP_PAGES_TTL, serialize($data), $cache_args); |
| 69 | 69 | }; |
| 70 | 70 | |
@@ -75,7 +75,7 @@ discard block |
||
| 75 | 75 | top_host_table_start($sort_by); |
| 76 | 76 | $i = 1 + $offset; |
| 77 | 77 | $n = sizeof($data); |
| 78 | -foreach($data as $host) { |
|
| 78 | +foreach ($data as $host) { |
|
| 79 | 79 | show_host_row($host, $i, false, true, false); |
| 80 | 80 | $i++; |
| 81 | 81 | } |
@@ -87,7 +87,7 @@ discard block |
||
| 87 | 87 | |
| 88 | 88 | } |
| 89 | 89 | |
| 90 | -if ($n==$hosts_per_page){ //If we aren't on the last page |
|
| 90 | +if ($n == $hosts_per_page) { //If we aren't on the last page |
|
| 91 | 91 | $new_offset = $offset + $hosts_per_page; |
| 92 | 92 | echo "<a href=top_hosts.php?sort_by=$sort_by&offset=$new_offset>".tra("Next %1", $hosts_per_page)."</a>"; |
| 93 | 93 | } |
@@ -25,14 +25,14 @@ discard block |
||
| 25 | 25 | |
| 26 | 26 | $db_revision = 0; |
| 27 | 27 | if (file_exists("../../db_revision")) { |
| 28 | - $db_revision = (int) file_get_contents("../../db_revision"); |
|
| 28 | + $db_revision = (int)file_get_contents("../../db_revision"); |
|
| 29 | 29 | } |
| 30 | 30 | echo "DB version: $db_revision\n"; |
| 31 | 31 | |
| 32 | 32 | require_once("db_update.php"); |
| 33 | 33 | |
| 34 | 34 | $updates = array(); |
| 35 | -foreach($db_updates as $db_update) { |
|
| 35 | +foreach ($db_updates as $db_update) { |
|
| 36 | 36 | if ($db_update[0] > $db_revision) { |
| 37 | 37 | $func = $db_update[1]; |
| 38 | 38 | echo "need update $func\n"; |
@@ -60,7 +60,7 @@ discard block |
||
| 60 | 60 | |
| 61 | 61 | db_init_cli(); |
| 62 | 62 | |
| 63 | -foreach($updates as $update) { |
|
| 63 | +foreach ($updates as $update) { |
|
| 64 | 64 | list($rev, $func) = $update; |
| 65 | 65 | echo "performing update $func\n"; |
| 66 | 66 | call_user_func($func); |
@@ -107,7 +107,7 @@ discard block |
||
| 107 | 107 | // |
| 108 | 108 | function do_delete_user($user) { |
| 109 | 109 | global $test; |
| 110 | - $age = (time() - $user->create_time) / 86400; |
|
| 110 | + $age = (time() - $user->create_time)/86400; |
|
| 111 | 111 | echo "deleting user\n"; |
| 112 | 112 | echo " ID: $user->id\n"; |
| 113 | 113 | echo " email: $user->email_addr\n"; |
@@ -334,7 +334,7 @@ discard block |
||
| 334 | 334 | } |
| 335 | 335 | |
| 336 | 336 | function delete_user_id_range($id1, $id2) { |
| 337 | - for ($i=$id1; $i <= $id2; $i++) { |
|
| 337 | + for ($i = $id1; $i <= $id2; $i++) { |
|
| 338 | 338 | $user = BoincUser::lookup_id($i); |
| 339 | 339 | if ($user) { |
| 340 | 340 | echo "deleting user $i\n"; |
@@ -346,7 +346,7 @@ discard block |
||
| 346 | 346 | // this is for cleaning up BOINC-wide teams |
| 347 | 347 | // |
| 348 | 348 | function delete_team_id_range($id1, $id2) { |
| 349 | - for ($i=$id1; $i <= $id2; $i++) { |
|
| 349 | + for ($i = $id1; $i <= $id2; $i++) { |
|
| 350 | 350 | echo "deleting team $i\n"; |
| 351 | 351 | $team = BoincTeam::lookup_id($i); |
| 352 | 352 | if ($team) { |
@@ -361,7 +361,7 @@ discard block |
||
| 361 | 361 | |
| 362 | 362 | // get settings first |
| 363 | 363 | // |
| 364 | -for ($i=1; $i<$argc; $i++) { |
|
| 364 | +for ($i = 1; $i < $argc; $i++) { |
|
| 365 | 365 | if ($argv[$i] == "--test") { |
| 366 | 366 | $test = true; |
| 367 | 367 | } else if ($argv[$i] == "--min_days") { |
@@ -375,7 +375,7 @@ discard block |
||
| 375 | 375 | |
| 376 | 376 | // then do actions |
| 377 | 377 | // |
| 378 | -for ($i=1; $i<$argc; $i++) { |
|
| 378 | +for ($i = 1; $i < $argc; $i++) { |
|
| 379 | 379 | if ($argv[$i] == "--list") { |
| 380 | 380 | delete_list($argv[++$i]); |
| 381 | 381 | } else if ($argv[$i] == "--profiles") { |
@@ -58,7 +58,7 @@ discard block |
||
| 58 | 58 | echo "</tr>"; |
| 59 | 59 | |
| 60 | 60 | echo "<tr>"; |
| 61 | - echo "<th>" . tra("Rank") . "</th><th>" . tra("Name") . "</th>\n"; |
|
| 61 | + echo "<th>".tra("Rank")."</th><th>".tra("Name")."</th>\n"; |
|
| 62 | 62 | foreach ($apps as $app) { |
| 63 | 63 | for ($i = 0; $i < 2; $i++) { |
| 64 | 64 | $x = col_title($is_team, $app, $appid, $is_total, $i); |
@@ -78,13 +78,13 @@ discard block |
||
| 78 | 78 | echo "<tr>"; |
| 79 | 79 | echo "<td>$i</td>"; |
| 80 | 80 | |
| 81 | - echo "<td>" . $item[0][$x] . "</td>"; |
|
| 81 | + echo "<td>".$item[0][$x]."</td>"; |
|
| 82 | 82 | $y = 1; |
| 83 | 83 | foreach ($apps as $app) { |
| 84 | 84 | $z = 0; |
| 85 | - echo "<td>" . format_credit($item[$y][$x][$z]) . "</td>"; |
|
| 85 | + echo "<td>".format_credit($item[$y][$x][$z])."</td>"; |
|
| 86 | 86 | $z++; |
| 87 | - echo "<td>" . format_credit_large($item[$y][$x][$z]) . "</td>"; |
|
| 87 | + echo "<td>".format_credit_large($item[$y][$x][$z])."</td>"; |
|
| 88 | 88 | $y++; |
| 89 | 89 | } |
| 90 | 90 | echo "</tr>"; |
@@ -179,10 +179,10 @@ discard block |
||
| 179 | 179 | |
| 180 | 180 | if ($is_team) { |
| 181 | 181 | |
| 182 | - $data = BoincCreditTeam::get_list("appid=$appid", $x, $offset . ", " . $items_per_page); |
|
| 182 | + $data = BoincCreditTeam::get_list("appid=$appid", $x, $offset.", ".$items_per_page); |
|
| 183 | 183 | $store = retrieve_credit_team($data); |
| 184 | 184 | } else { |
| 185 | - $data = BoincCreditUser::get_list("appid=$appid", $x, $offset . ", " . $items_per_page); |
|
| 185 | + $data = BoincCreditUser::get_list("appid=$appid", $x, $offset.", ".$items_per_page); |
|
| 186 | 186 | $store = retrieve_credit_user($data); |
| 187 | 187 | } |
| 188 | 188 | |
@@ -197,7 +197,7 @@ discard block |
||
| 197 | 197 | |
| 198 | 198 | if (!$offset) |
| 199 | 199 | $offset = 0; |
| 200 | -if ($offset % $items_per_page) |
|
| 200 | +if ($offset%$items_per_page) |
|
| 201 | 201 | $offset = 0; |
| 202 | 202 | |
| 203 | 203 | $x = $is_team ? tra("Top teams by application") : tra("Top participants by application"); |
@@ -245,12 +245,12 @@ discard block |
||
| 245 | 245 | |
| 246 | 246 | if ($offset > 0) { |
| 247 | 247 | $new_offset = $offset - $items_per_page; |
| 248 | - echo "<a href=per_app_list.php?appid=$appid&is_team=$is_team&is_total=$is_total&offset=$new_offset>" . tra("Previous %1", $items_per_page) . "</a> · "; |
|
| 248 | + echo "<a href=per_app_list.php?appid=$appid&is_team=$is_team&is_total=$is_total&offset=$new_offset>".tra("Previous %1", $items_per_page)."</a> · "; |
|
| 249 | 249 | } |
| 250 | 250 | |
| 251 | 251 | if (sizeof($data[0]) == $items_per_page) { |
| 252 | 252 | $new_offset = $offset + $items_per_page; |
| 253 | - echo "<a href=per_app_list.php?appid=$appid&is_team=$is_team&is_total=$is_total&offset=$new_offset>" . tra("Next %1", $items_per_page) . "</a>"; |
|
| 253 | + echo "<a href=per_app_list.php?appid=$appid&is_team=$is_team&is_total=$is_total&offset=$new_offset>".tra("Next %1", $items_per_page)."</a>"; |
|
| 254 | 254 | } |
| 255 | 255 | |
| 256 | 256 | page_tail(); |