The real problem here is why space in other views is handled properly and in the applet view it's not.
Edit file: modules/CRM/PhoneCall/PhoneCallCommon_0.php
line ~234
if($number && strpos($number,'+')===false) {
if($contact['country']) {
$calling_code = Utils_CommonDataCommon::get_value('Calling_Codes/'.$contact['country']);
if($calling_code)
$number = $calling_code.' '.$number;
}
}
remove space in the join:
if($contact['country']) {
$calling_code = Utils_CommonDataCommon::get_value('Calling_Codes/'.$contact['country']);
if($calling_code)
$number = $calling_code.$number;
}
}
Best regards,
Adam