/*
* Patch for filter_var()
*/
if(!function_exists('filter_var')){
define('FILTER_VALIDATE_IP', 'ip');
define('FILTER_FLAG_IPV4', 'ipv4');
define('FILTER_FLAG_IPV6', 'ipv6');
define('FILTER_VALIDATE_EMAIL', 'email');
define('FILTER_FLAG_EMAIL_UNICODE', 'unicode');
function filter_var($variable, $filter, $option = false){
if($filter == 'ip'){
if($option == 'ipv4'){
if(preg_match("/(\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3})/", $variable, $matches)){
$variable = $matches[1];
return $variable;
}
}
if($option == 'ipv6'){
if(preg_match("/\s*(([:.]{0,7}[0-9a-fA-F]{0,4}){1,8})\s*/", $variable, $matches)){
$variable = $matches[1];
return $variable;
}
}
}
if($filter == 'email'){
if($option == 'unicode' || $option == false){
if(preg_match("/\s*(\S*@\S*\.\S*)\s*/", $variable, $matches)){
$variable = $matches[1];
return $variable;
}
}
}
}
}
User statistics for: Pacific
- Total Time Spent Online:
- 21 hours and 31 minutes.
- Total Posts:
- 598 posts
- Total Topics Started:
- 45 topics
- Number of Polls Created:
- 3 polls
- Number of Votes Cast:
- 21 votes
-
12 am
-
1 am
-
2 am
-
3 am
-
4 am
-
5 am
-
6 am
-
7 am
-
8 am
-
9 am
-
10 am
-
11 am
-
12 pm
-
1 pm
-
2 pm
-
3 pm
-
4 pm
-
5 pm
-
6 pm
-
7 pm
-
8 pm
-
9 pm
-
10 pm
-
11 pm
- General Chat
-
243 posts of the member's 598 posts (40.64%)
243
- Bugs
-
40 posts of the member's 598 posts (6.69%)
40
- Game News
-
27 posts of the member's 598 posts (4.52%)
27
- Game Updates
-
5 posts of the member's 598 posts (0.84%)
5
- Game Data
-
5 posts of the member's 598 posts (0.84%)
5
- Game Strategy
-
4 posts of the member's 598 posts (0.67%)
4
- Airline Reports
-
3 posts of the member's 598 posts (0.50%)
3
- Iarnród Mogal
-
2 posts of the member's 598 posts (0.33%)
2
- Alliances
-
1 posts of the member's 598 posts (0.17%)
1
- News
-
1 posts of the member's 598 posts (0.17%)
1
- News
-
1 posts of the board's 44 posts (2.27%)
2.27%
- Game News
-
27 posts of the board's 1907 posts (1.42%)
1.42%
- General Chat
-
243 posts of the board's 24017 posts (1.01%)
1.01%
- Iarnród Mogal
-
2 posts of the board's 350 posts (0.57%)
0.57%
- Alliances
-
1 posts of the board's 189 posts (0.53%)
0.53%
- Bugs
-
40 posts of the board's 9922 posts (0.40%)
0.40%
- Game Updates
-
5 posts of the board's 1434 posts (0.35%)
0.35%
- General Chat
-
71 posts of the board's 23354 posts (0.30%)
0.30%
- Game Data
-
5 posts of the board's 2194 posts (0.23%)
0.23%
- Airline Reports
-
3 posts of the board's 1498 posts (0.20%)
0.20%