You are here

function recaptcha_mailhide_filter_tips in reCAPTCHA 5.2

Same name and namespace in other branches
  1. 6 recaptcha_mailhide/recaptcha_mailhide.module \recaptcha_mailhide_filter_tips()

reCAPTCHA implementation of hook_filter_tips

1 call to recaptcha_mailhide_filter_tips()
recaptcha_mailhide_filter in ./recaptcha_mailhide.module
reCAPTCHA implementation of hook_filter

File

./recaptcha_mailhide.module, line 91
Protects email addresses using the reCAPTCHA web service.

Code

function recaptcha_mailhide_filter_tips($delta, $format, $long = false) {
  return t('E-Mail addresses are hidden with <a href="@url" target="_blank">reCAPTCHA Mailhide</a>.', array(
    '@url' => 'http://mailhide.recaptcha.net/',
  ));
}