added missing semicolon to entity &#8203 and do an urldecode to get a nicer looking link

This commit is contained in:
Ralf Becker 2011-09-06 07:41:14 +00:00
parent c23450ea73
commit f8ad548a9a

View File

@ -915,7 +915,7 @@ abstract class bo_tracking
if ($type == 'link')
{
// the link is often too long for html boxes chunk-split allows to break lines if needed
$content .= html::a_href(chunk_split($data,40,'&#8203'),$data,'','target="_blank"');
$content .= html::a_href(chunk_split(rawurldecode($data),40,'​'),$data,'','target="_blank"');
}
elseif ($this->html_content_allow)
{