Create valid <a> tags

release-0.6
thomascube 18 years ago
parent a3f149eb57
commit e5af2fe88e

@ -977,24 +977,27 @@ function rcmail_html4inline($body, $container_id)
* parse link attributes and set correct target
*/
function rcmail_alter_html_link($tag, $attrs, $container_id)
{
{
$attrib = parse_attrib_string($attrs);
$end = '>';
if ($tag == 'link' && preg_match('/^https?:\/\//i', $attrib['href']))
if ($tag == 'link' && preg_match('/^https?:\/\//i', $attrib['href'])) {
$attrib['href'] = "./bin/modcss.php?u=" . urlencode($attrib['href']) . "&amp;c=" . urlencode($container_id);
else if (stristr((string)$attrib['href'], 'mailto:'))
$end = ' />';
}
else if (stristr((string)$attrib['href'], 'mailto:')) {
$attrib['onclick'] = sprintf(
"return %s.command('compose','%s',this)",
JS_OBJECT_NAME,
JQ(substr($attrib['href'], 7)));
else if (!empty($attrib['href']) && $attrib['href']{0}!='#')
}
else if (!empty($attrib['href']) && $attrib['href'][0] != '#') {
$attrib['target'] = '_blank';
return "<$tag" . create_attrib_string($attrib, array('href','name','target','onclick','id','class','style','title','rel','type','media')) . ' />';
}
return "<$tag" . html::attrib_string($attrib, array('href','name','target','onclick','id','class','style','title','rel','type','media')) . $end;
}
/**
* decode address string and re-format it as HTML links

Loading…
Cancel
Save