@@ -22,21 +22,21 @@ discard block |
||
| 22 | 22 | function time_diff_str($t1, $t2) { |
| 23 | 23 | if (!$t1 || !$t2) return "---"; |
| 24 | 24 | $diff = $t2 - $t1; |
| 25 | - if ($diff<0){ |
|
| 26 | - $pre="In "; |
|
| 27 | - $post=""; |
|
| 28 | - $diff=-$diff; |
|
| 25 | + if ($diff < 0) { |
|
| 26 | + $pre = "In "; |
|
| 27 | + $post = ""; |
|
| 28 | + $diff = -$diff; |
|
| 29 | 29 | } else { |
| 30 | 30 | if ($diff > 86400*30) { |
| 31 | 31 | return date_str($t1); |
| 32 | 32 | } |
| 33 | - $pre=""; |
|
| 34 | - $post=" ago"; |
|
| 33 | + $pre = ""; |
|
| 34 | + $post = " ago"; |
|
| 35 | 35 | } |
| 36 | 36 | $x = ""; |
| 37 | 37 | |
| 38 | 38 | if ($diff >= 3600*24) { |
| 39 | - $n = (int) ($diff/(3600*24)); |
|
| 39 | + $n = (int)($diff/(3600*24)); |
|
| 40 | 40 | if ($n == 1) { |
| 41 | 41 | $x .= "1 day "; |
| 42 | 42 | } else { |
@@ -45,7 +45,7 @@ discard block |
||
| 45 | 45 | return $pre.$x.$post; |
| 46 | 46 | //$diff -= $n*3600*24; |
| 47 | 47 | } elseif ($diff >= 3600) { |
| 48 | - $n = (int) ($diff/3600); |
|
| 48 | + $n = (int)($diff/3600); |
|
| 49 | 49 | if ($n == 1) { |
| 50 | 50 | $x .= "1 hour "; |
| 51 | 51 | } else { |
@@ -54,16 +54,16 @@ discard block |
||
| 54 | 54 | return $pre.$x.$post; |
| 55 | 55 | //$diff -= $n*3600; |
| 56 | 56 | } elseif ($diff >= 60) { |
| 57 | - $n = (int) ($diff/60); |
|
| 57 | + $n = (int)($diff/60); |
|
| 58 | 58 | if ($n == 1) { |
| 59 | 59 | $x .= "1 minute "; |
| 60 | 60 | } else { |
| 61 | 61 | $x .= $n." minutes "; |
| 62 | 62 | } |
| 63 | 63 | return $pre.$x.$post; |
| 64 | - } elseif($diff > 1 || $diff==0) { |
|
| 64 | + } elseif ($diff > 1 || $diff == 0) { |
|
| 65 | 65 | return $pre."$diff seconds".$post; |
| 66 | - } elseif($diff == 1){ |
|
| 66 | + } elseif ($diff == 1) { |
|
| 67 | 67 | return $pre."$diff seconds".$post; |
| 68 | 68 | } |
| 69 | 69 | } |
@@ -9,7 +9,7 @@ |
||
| 9 | 9 | * classes. |
| 10 | 10 | */ |
| 11 | 11 | |
| 12 | -spl_autoload_register(function ($class) { |
|
| 12 | +spl_autoload_register(function($class) { |
|
| 13 | 13 | if (substr($class, 0, 10) !== 'ReCaptcha\\') { |
| 14 | 14 | /* If the class does not lie under the "ReCaptcha" namespace, |
| 15 | 15 | * then we can exit immediately. |
@@ -19,7 +19,7 @@ discard block |
||
| 19 | 19 | |
| 20 | 20 | require_once('../inc/sanitize_html.inc'); |
| 21 | 21 | |
| 22 | -function image_as_bb($text){ |
|
| 22 | +function image_as_bb($text) { |
|
| 23 | 23 | // This function depends on sanitized HTML |
| 24 | 24 | |
| 25 | 25 | $pattern = '@<img(.*) src=\"([^>^"]+)\"([^>]*)>@si'; |
@@ -33,7 +33,7 @@ discard block |
||
| 33 | 33 | return $text; |
| 34 | 34 | } |
| 35 | 35 | |
| 36 | -function link_as_bb($text){ |
|
| 36 | +function link_as_bb($text) { |
|
| 37 | 37 | /* This function depends on sanitized HTML */ |
| 38 | 38 | // Build some regex (should be a *lot* faster) |
| 39 | 39 | $pattern = '@<a href=\"([^>]+)\">@si'; // Gives us the URL in $1... |
@@ -49,35 +49,35 @@ discard block |
||
| 49 | 49 | return $text; |
| 50 | 50 | } |
| 51 | 51 | |
| 52 | -function formatting_as_bb($text){ |
|
| 52 | +function formatting_as_bb($text) { |
|
| 53 | 53 | /* This function depends on sanitized HTML */ |
| 54 | - $in[]="<b>";$out[]="[b]"; |
|
| 55 | - $in[]="</b>";$out[]="[/b]"; |
|
| 54 | + $in[] = "<b>"; $out[] = "[b]"; |
|
| 55 | + $in[] = "</b>"; $out[] = "[/b]"; |
|
| 56 | 56 | |
| 57 | - $in[]="<i>";$out[]="[i]"; |
|
| 58 | - $in[]="</i>";$out[]="[/i]"; |
|
| 57 | + $in[] = "<i>"; $out[] = "[i]"; |
|
| 58 | + $in[] = "</i>"; $out[] = "[/i]"; |
|
| 59 | 59 | |
| 60 | - $in[]="<u>";$out[]="[u]"; |
|
| 61 | - $in[]="</u>";$out[]="[/u]"; |
|
| 60 | + $in[] = "<u>"; $out[] = "[u]"; |
|
| 61 | + $in[] = "</u>"; $out[] = "[/u]"; |
|
| 62 | 62 | |
| 63 | - $in[]="<b>";$out[]="[b]"; |
|
| 64 | - $in[]="</b>";$out[]="[/b]"; |
|
| 63 | + $in[] = "<b>"; $out[] = "[b]"; |
|
| 64 | + $in[] = "</b>"; $out[] = "[/b]"; |
|
| 65 | 65 | |
| 66 | - $in[]="<ul>";$out[]="[list]"; |
|
| 67 | - $in[]="</ul>";$out[]="[/list]"; |
|
| 66 | + $in[] = "<ul>"; $out[] = "[list]"; |
|
| 67 | + $in[] = "</ul>"; $out[] = "[/list]"; |
|
| 68 | 68 | |
| 69 | - $in[]="<ol>";$out[]="[list=1]"; |
|
| 70 | - $in[]="</ol>";$out[]="[/list]"; |
|
| 69 | + $in[] = "<ol>"; $out[] = "[list=1]"; |
|
| 70 | + $in[] = "</ol>"; $out[] = "[/list]"; |
|
| 71 | 71 | |
| 72 | - $in[]="<pre>";$out[]="[pre]"; |
|
| 73 | - $in[]="</pre>";$out[]="[/pre]"; |
|
| 72 | + $in[] = "<pre>"; $out[] = "[pre]"; |
|
| 73 | + $in[] = "</pre>"; $out[] = "[/pre]"; |
|
| 74 | 74 | |
| 75 | - $in[]="</br>";$out[]="\n"; |
|
| 76 | - $in[]="<br/>";$out[]="\n"; |
|
| 77 | - $in[]="<br>";$out[]="\n"; |
|
| 78 | - $in[]=">";$out[]=">"; |
|
| 79 | - $in[]="<";$out[]="<"; |
|
| 80 | - $in[]="&";$out[]="&"; |
|
| 75 | + $in[] = "</br>"; $out[] = "\n"; |
|
| 76 | + $in[] = "<br/>"; $out[] = "\n"; |
|
| 77 | + $in[] = "<br>"; $out[] = "\n"; |
|
| 78 | + $in[] = ">"; $out[] = ">"; |
|
| 79 | + $in[] = "<"; $out[] = "<"; |
|
| 80 | + $in[] = "&"; $out[] = "&"; |
|
| 81 | 81 | |
| 82 | 82 | return str_replace($in, $out, $text); |
| 83 | 83 | } |
@@ -43,7 +43,7 @@ discard block |
||
| 43 | 43 | function _mysql_connect($host, $user, $pass, $dbname) { |
| 44 | 44 | global $mysqli; |
| 45 | 45 | $x = explode(":", $host); |
| 46 | - if (sizeof($x)>1) { |
|
| 46 | + if (sizeof($x) > 1) { |
|
| 47 | 47 | $host = $x[0]; |
| 48 | 48 | $port = $x[1]; |
| 49 | 49 | } else { |
@@ -162,7 +162,7 @@ discard block |
||
| 162 | 162 | } |
| 163 | 163 | } |
| 164 | 164 | |
| 165 | -function db_init_aux($try_replica=false) { |
|
| 165 | +function db_init_aux($try_replica = false) { |
|
| 166 | 166 | $config = get_config(); |
| 167 | 167 | $user = parse_config($config, "<db_user>"); |
| 168 | 168 | $pass = parse_config($config, "<db_passwd>"); |
@@ -33,6 +33,6 @@ |
||
| 33 | 33 | } |
| 34 | 34 | |
| 35 | 35 | function wap_timestamp() { |
| 36 | - return gmdate('j M Y G:i:s', time()) . " UTC"; |
|
| 36 | + return gmdate('j M Y G:i:s', time())." UTC"; |
|
| 37 | 37 | } |
| 38 | 38 | ?> |
@@ -23,10 +23,10 @@ discard block |
||
| 23 | 23 | $gd_info = gd_info(); |
| 24 | 24 | // libgd version numbers seem to be always three numbers |
| 25 | 25 | preg_match('/(\d).(\d).(\d)/', $gd_info['GD Version'], $match); |
| 26 | - $newGD = ($match[1]>=2); |
|
| 26 | + $newGD = ($match[1] >= 2); |
|
| 27 | 27 | |
| 28 | 28 | list($ow, $oh, $from_type) = getimagesize($sourcefile); |
| 29 | - switch($from_type) { |
|
| 29 | + switch ($from_type) { |
|
| 30 | 30 | case 1: // GIF |
| 31 | 31 | $srcImage = imageCreateFromGif($sourcefile); |
| 32 | 32 | break; |
@@ -41,12 +41,12 @@ discard block |
||
| 41 | 41 | $tempw = $fw; |
| 42 | 42 | $temph = number_format((($oh*$fw)/$ow), 0); |
| 43 | 43 | |
| 44 | - if($temph < $fh) { |
|
| 44 | + if ($temph < $fh) { |
|
| 45 | 45 | $tempw = number_format((($ow*$fh)/$oh), 0); |
| 46 | 46 | $temph = $fh; |
| 47 | 47 | } |
| 48 | 48 | |
| 49 | - if ($newGD){ |
|
| 49 | + if ($newGD) { |
|
| 50 | 50 | $tempImage = imageCreateTrueColor($tempw, $temph); |
| 51 | 51 | // Seems not to work: |
| 52 | 52 | // imageAntiAlias($tempImage, true); |
@@ -58,15 +58,15 @@ discard block |
||
| 58 | 58 | |
| 59 | 59 | |
| 60 | 60 | // Calculate offsets |
| 61 | - if($temph < $fh) { |
|
| 62 | - $offsety = number_format(($temph/2)-($fh/2), 0); |
|
| 61 | + if ($temph < $fh) { |
|
| 62 | + $offsety = number_format(($temph/2) - ($fh/2), 0); |
|
| 63 | 63 | $offsetx = 0; |
| 64 | 64 | } else { |
| 65 | 65 | $offsety = 0; |
| 66 | - $offsetx = number_format(($tempw/2)-($fw/2), 0); |
|
| 66 | + $offsetx = number_format(($tempw/2) - ($fw/2), 0); |
|
| 67 | 67 | } |
| 68 | 68 | |
| 69 | - if ($newGD){ |
|
| 69 | + if ($newGD) { |
|
| 70 | 70 | $destImage = imageCreateTrueColor($fw, $fh); |
| 71 | 71 | // Seems not to work: |
| 72 | 72 | // imageAntiAlias($tempImage, true); |
@@ -37,7 +37,7 @@ discard block |
||
| 37 | 37 | |
| 38 | 38 | function team_type_name($num) { |
| 39 | 39 | global $team_types; |
| 40 | - if ($num>0 && $num<count($team_types)) { |
|
| 40 | + if ($num > 0 && $num < count($team_types)) { |
|
| 41 | 41 | return $team_types[$num]; |
| 42 | 42 | } |
| 43 | 43 | return "None"; |
@@ -53,13 +53,13 @@ discard block |
||
| 53 | 53 | |
| 54 | 54 | function team_type_num($name) { |
| 55 | 55 | global $team_types; |
| 56 | - for ($i=0; $i<sizeof($team_types); $i++) { |
|
| 56 | + for ($i = 0; $i < sizeof($team_types); $i++) { |
|
| 57 | 57 | if ($name == $team_types[$i]) return $i; |
| 58 | 58 | } |
| 59 | 59 | return 0; |
| 60 | 60 | } |
| 61 | 61 | |
| 62 | -function team_type_select($selected_type, $allow_none=false){ |
|
| 62 | +function team_type_select($selected_type, $allow_none = false) { |
|
| 63 | 63 | global $team_types; |
| 64 | 64 | |
| 65 | 65 | $types = $team_types; |
@@ -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)) { |