1
0
mirror of https://github.com/e107inc/e107.git synced 2025-01-19 13:37:09 +01:00
2006-12-31 15:12:15 +00:00

16 lines
357 B
Python

@include_once(e_LANGUAGEDIR.e_LANGUAGE."/lan_user.php");
@include_once(e_LANGUAGEDIR."English/lan_user.php");
global $tp;
if (substr($parm, -5) == '-link')
{
$parm = substr($parm, 0, -5);
return ($user_hideemail && !ADMIN) ? "<i>".LAN_143."</i>" : $tp->toHTML($parm,TRUE);
}
else
{
return ($user_hideemail && !ADMIN) ? "<i>".LAN_143."</i>" : $parm;
}