Contact Form looks changed
Anonymous — Thu, 21/06/2007 - 22:28
Hi, MyCaptcha is lookiing promising. Still unsure whether it might have troubles with page caching, though but that's not what this is about.
I noticed that on the normal Contact Form, there is a checkbox "send a copy to yourself".
When enabling MyCaptcha for anonymous users, this checkbox seems to have disappeared. (www.johnmartyn.info)
Anonymous, send to self
Heine — Fri, 22/06/2007 - 06:27Anonymous users never see the 'send a copy to yourself' checkbox, as it's an open invitation to spam the world. Line 473 of contact.module reads:
// because it can be abused to spam people.
if ($user->uid) {
$form['copy'] = array('#type' => 'checkbox',
'#title' => t('Send yourself a copy.'),
);
}
You can confirm this by disabling MyCaptcha for the contact form, then access the form while logged out.
Post new comment