* eMail: by handling links while displaying emails, always add a target _blank to force the opening in a new window (instead of redirecting)

This commit is contained in:
Klaus Leithoff 2012-10-24 08:43:06 +00:00
parent 7c580f1b64
commit 97c1e3431d

View File

@ -210,7 +210,8 @@
#echo $text."#<br>";
#echo $link."#<br>\n";
$link = str_replace("\n","",$link);
$comp_uri = "<a href=\"$webserverURL/redirect.php?go=".$link;
//$comp_uri = "<a href=\"$webserverURL/redirect.php?go=".$link;
$comp_uri = "<a target=\"_blank\" href=\"".$link;
$body = str_replace('<a href="'.$link, $comp_uri, $body);
$llink=$link;
}