/*
* 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 - Google Talk
Airline Mogul Forum
Non-Airline Mogul => General Chat => Topic started by: blue25 on January 05, 2009, 10:05:14 pm
Does anybody here use Google Talk?
As we type, actually. It comes in quite handy when communicating with other AM Staff members.
Would you be able to tell me at least Stephen's screen name? You may do so through PM so others don't stalk him.
Why don't you ask Stephen yourself then?
Google what? Isn't IRC good enough?
Not if you can use it with your email and manage a whole load of other apps with it. Can't do that with IRC.
Google what? Isn't IRC good enough? We can answer the staff emails through it, discuss game related matters, co-ordinate with documents and spreadsheets (This one is particularly helpful) I use the Calendar for arranging my time availability, there is also some site/project management stuff we can use too. Its essentially a Google account that we use, just customised for organisational use rather than personal.