"removed prefered phone marker \"♥\" from url, causing 9829 to be appended to the phone-number otherwise"

This commit is contained in:
Ralf Becker 2009-03-12 11:43:40 +00:00
parent d313eb2daf
commit 9ed901daf7

View File

@ -231,7 +231,7 @@ class url_widget
$user = $GLOBALS['egw']->contacts->read('account:'.$GLOBALS['egw_info']['user']['account_id']);
$userphone = is_array($user) ? ($user['tel_work'] ? $user['tel_work'] : $user['tel_home']) : false;
}
$number = preg_replace('/[^0-9+]+/','',$number); // remove number formatting chars messing up the links
$number = preg_replace('/[^0-9+]+/','',str_replace('♥','',$number)); // remove number formatting chars messing up the links
return str_replace(array('%1','%u','%t'),array(urlencode($number),$GLOBALS['egw_info']['user']['account_lid'],$userphone),
$GLOBALS['egw_info']['server']['call_link']);