/*
* 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 - concorde
Airline Mogul Forum
Airline Mogul => Game Strategy => Topic started by: fionnair on August 19, 2010, 02:43:01 pm
-
when does the concorde come out. what year
-
http://www.airlinemogul.com/airlinemogul/view_all_aircraft.php
-
it doesn't say concorde anywhere
-
Control+F ;)
-
it doesn't say concorde anywhere
As Rionescu said you can always use Control+F, it is also listed under BAC (British Aircraft Corporation) as the manufacturer.
-
Hello,
OK, so this may be my French pride speaking, but to list the Concorde only under BAC is somewhat inaccurate.
The Concorde was a joint project between two major aircraft manufacturers, namely BAC (now BAE Systems) and AĆ©rospatiale (now EADS).
As such, it would be more appropriate to list the Concorde under both manufacturers, and if this is not possible due to system constraints, to list it under a seperate manufacturuer listed for example "BAC / AĆ©rospatiale".
Ciao,
Thunderstruck.
-
Woops, wrong topic. My bad... :-[