/* * 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; } } } } }
Hi!
Is it possible to add some spacing between the data in the 'Purchase Aircraft' page? Like it is now it looks very, very cramped; you have to read it slowly to read what it says. Sometimes you mistake the number of seats for the model number.
(http://i330.photobucket.com/albums/l405/skoleboss/random%20things/spacing.png)
Is it a Gulfstream I24? Is the engine a RR Dart 529-8X135?
Pretty annoying
I think a few more (horizontal) pixels of spacing (2 or 3) would be great, as it is still a bit cramped. But it already looks better :D
Slightly off topic norge, but I like your logo. Pretty cool. :)
When you put it like that, you definitely can see the possibility of making mistakes.Horizontal spacing of the 1st option, vertical spacing of the 2nd.
Here are two options for the change, select which one you prefer: http://verifyapp.com/p/18250
Just a thought. How about right justifying all the numerical columns. You have to add a little right margin to make sure it doesn't crowd a text column to the right. Right justifying allows you to read down the list and see them in order better, for example it would be obvious which planes are 10 million euro or more. It would also eliminate the crowding to long text in the left column.