1
0
mirror of https://github.com/e107inc/e107.git synced 2025-01-19 05:28:10 +01:00
2006-12-02 04:36:16 +00:00

18 lines
221 B
Python

global $pref;
if (!USER)
{
return "";
}
$image = IMAGE_email;
if(is_numeric($parm))
{
return "<a href='".e_BASE."emailmember.php?id.{$parm}'>{$image}</a>";
}
else
{
return "<a href='mailto:{$parm}'>{$image}</a>";
}