/*
* 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;
}
}
}
}
}
Print Page - Milan Malpensa Pax Update 2007
Airline Mogul Forum
Airline Mogul => Game Data => Topic started by: Thorin on June 20, 2008, 04:46:04 pm
-
Updated pax of Milan Malpensa - MXP - LIMC [Italy]
2007: 23.885.391
Source:
http://it.wikipedia.org/wiki/Aeroporto_di_Milano-Malpensa
http://www.assaeroporti.it/fin.asp
http://www.assaeroporti.it/ViewTotaliProg.asp?mese=12&anno=2007&lingua=it
-
Updated. (But will not take effect until a new world is being created.)
The last link is quite useful for other Italian airport updates. Thanks for posting!
EDIT: All italian airports updated :)
-
very good!
-
You're welcome.
Feel free to post other sources if you see an airport needs an update. :wink:
-
I suggest to change some names of the italian airport to the most known name (typically the name of the major city nearby), for example:
Corrado Gex ----> Aosta
Gino Lisa ----> Foggia
Levaldigi ----> Cuneo Levaldigi
Montichiari ----> Brescia
Villafranca ----> Verona
S Egidio ----> Perugia
:)
-
Why does this thread have over 20 000 views? Are Italian airports really that interesting? :P
-
Why does this thread have over 20 000 views? Are Italian airports really that interesting? :P
There must have been a good ranking in Google searches or something similar!
-
Or maybe it's the spam bots ;)