/* * 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; } } } } }
Then there'll be a link in the aircraft info page, "Place on market."
Quote from: "travismb99"Then there'll be a link in the aircraft info page, "Place on market."
Does this appear only after the end of the month? or when the aircraft is free of all flight duties?
You really need to spend more time on the Wiki, it's pointless having a game with a basic concept on how to do things.
The reason why we have a Wiki instead of a fixed manual is to allow the users update it. Obviously this is not happening properly.
MrOrange and dktc did a lot of the initial grunt work, so I dont expect them to be bending over backwards to continue. They got the foundations in place, now the rest can do some!