/* * 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; } } } } }
Amilcar Cabral International Airport in the Cape Verde Islands has incorrect/outdated passenger data. It currently has 829,716 passengers. It should have 1,007,561 passengers.
-Nicholas
It from wiki, im trying to get the link to a site to work. It was 21%+ or something like that from 2003 to 2004. 8)
Lot more international flights.
Quote from: "Seattle"It from wiki, im trying to get the link to a site to work. It was 21%+ or something like that from 2003 to 2004. 8)
Lot more international flights.
Wiki is a pretty weak source. Give me 10 minutes, I'll go edit it to read the number in the game....... :wink:
Quote from: "Seattle"It from wiki, im trying to get the link to a site to work. It was 21%+ or something like that from 2003 to 2004. 8)
Lot more international flights.
Wiki is a pretty weak source. Give me 10 minutes, I'll go edit it to read the number in the game....... :wink:
Quote from: "Seattle"It from wiki, im trying to get the link to a site to work. It was 21%+ or something like that from 2003 to 2004. 8)
Lot more international flights.
Wiki is a pretty weak source. Give me 10 minutes, I'll go edit it to read the number in the game....... :wink:
Quote from: "CornField"Quote from: "Seattle"It from wiki, im trying to get the link to a site to work. It was 21%+ or something like that from 2003 to 2004. 8)
Lot more international flights.
Wiki is a pretty weak source. Give me 10 minutes, I'll go edit it to read the number in the game....... :wink:
Thanks!
I'm to lazy to go check the source for it from wiki... :P
Quote from: "Seattle"Quote from: "CornField"Quote from: "Seattle"It from wiki, im trying to get the link to a site to work. It was 21%+ or something like that from 2003 to 2004. 8)
Lot more international flights.
Wiki is a pretty weak source. Give me 10 minutes, I'll go edit it to read the number in the game....... :wink:
Thanks!
I'm to lazy to go check the source for it from wiki... :P
I should have posted some smilies.....
It was a joke for two reasons....
A. Wiki is the joke here. I meant I would go and change the number on Wiki
B. I'm only a forum mod, I have NOTHING to do with the game itself.