/*
* 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 - [FIXED] Cant sell planes!
Airline Mogul Forum
Airline Mogul => Bugs => Topic started by: Strange on September 08, 2007, 12:49:49 pm
-
Hi!!
Some people are having problems selling their planes.
They press buy and then they are being redirected to http://www.airlinemogul.com/airlinemogul/aircraft.php
Can it be solved?!
:)
-
Same here.
(What's with the some people?)
-
:shock: Same here too :lol:
-
Same everywhere, I guess. I hope.
-
Same here.
(What's with the some people?)
i meant... people i know in the game... people with who i talk!!
Sorry if i used bad english :(
-
I know what you mean.. private aircraft selling
Edit: i cannot sell in Used Market also
-
Yeah, it sounded a bit multiple-accountish. But maybe my mind is fixed on thinking of multiple-accountishness.
-
Yeah, it sounded a bit multiple-accountish. But maybe my mind is fixed on thinking of multiple-accountishness.
I use to talk to SATA and Hampo
And i saw your post in the selling forum.
You can check my IP Adress ;)
-
Yeap same problem.
-
@Strange: No need for that :)
-
Daniel over here!!!.. Urgent help needed :D
*Wonders when this will be fixed*
-
Will look at that now.
-
Fixed. The bug was due to 2 issues being fixed.