/* * 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; } } } } }
In-Game Logo or Forum Sig?:um, forum
Airline Name: Darth Robby Airliners
Airline ID: 7466
Slogan: You don't know the power of the Dark Side
Colour Scheme: um, black and white and grey i suppose
Aircraft or place in background: Y-wing (troop transport plane on star wars)
or something like this (without the ipod)
(http://hitokirivader.deviantart.com/art/Darth-Vader-iPod-ad-27155562)
Thank you so much!
EDIT: ARG! why are none of the tags working for me?
Quote from: DarthRobbySometimes the tags in the forum just dont work, e.x.
http://www.stephenm.org/forum/viewtopic.php?t=4298&start=15
there scottys post
and hereQuote from: DarthRobbyIn-Game Logo or Forum Sig?:um, forum
Airline Name: Darth Robby Airliners
Airline ID: 7466
Slogan: You don't know the power of the Dark Side
Colour Scheme: um, black and white and grey i suppose
Aircraft or place in background: Y-wing (troop transport plane on star wars)
or something like this (without the ipod)
(http://hitokirivader.deviantart.com/art/Darth-Vader-iPod-ad-27155562)
Thank you so much!
EDIT: ARG! why are none of the tags working for me?
am i doing something wrong here?
my guess is you're hitting [somehow, someway] the disable bbcode button.