-> <\/a>
return 'document.write("'.$text.'");';
}
public function secure_email($email, $linktext, $crypt_linktext, $css_class='')
{
// No new lines to avoid a JavaScript error!
$linktext = str_replace("\r", ' ', $linktext);
$linktext = str_replace("\n", ' ', $linktext);
$aus = '';
if ($email != '')
{
$aus .= '';
}
return $aus.'';
}
}
# ------------------------------------------------------------------------------
function secure_email($email, $linktext, $crypt_linktext, $css_class='') {
$antispam = new VtsAntiSpam3();
$res = $antispam->secure_email($email, $linktext, $crypt_linktext);
return $res;
}