summaryrefslogtreecommitdiff
path: root/modules/recaptcha/helpers/recaptcha.php
AgeCommit message (Collapse)Author
2013-01-21Update copyright to 2013. Fixes #1953.Bharat Mediratta
2012-10-08Fix the recaptcha signup url. Fixes #1888.Bharat Mediratta
2012-02-27Update copyright to 2012. #1822Bharat Mediratta
2011-01-21Update copyright to 2011.Bharat Mediratta
2010-03-03Update the copyright to 2010. It's only 3 months into the year :-)Bharat Mediratta
2010-01-29Work around a weirdness where empty() doesn't work on input values.Bharat Mediratta
2010-01-29Clean up form validation code.Bharat Mediratta
2009-10-04Renamed most, if not all css selectors from gName to g-name. Moved a few ↵Chad Kieffer
shared images from wind to lib. Deleted unused images in the admin_wind. This will likely break a few ajax features.
2009-08-31Rename mark_safe() to mark_clean()Andy Staudacher
2009-08-30Change all instances of SafeString::of_safe_html() to html::mark_safe() in ↵Andy Staudacher
views.
2009-08-29Undo url helper changes - url methods no longer return a SafeString.Andy Staudacher
Adding SafeString::of_safe_html() calls where urls are passed as parameters to t() and t2().
2009-07-02Fix for ticket 470. Replace ReCaptcha with reCAPTCHA in user visible strings.Andy Staudacher
2009-05-13Gee it's May already. Update copyright to 2009.Bharat Mediratta
2009-03-16Remove unused orig_public_key from the form, it wasn't actually doing ↵Bharat Mediratta
anything (and was causing an error).
2009-01-28Simplify the recaptcha admin page. It's not guaranteed to verify yourBharat Mediratta
recaptcha private key properly anymore, but it's more intuitive to configure in the admin UI.
2009-01-26Adding Recaptcha to the comment module. Recaptcha integration consists of a ↵Tim Almdal
Form_Recaptcha class derived from Form_Input that can be added to any class that requires Recaptcha verfication.
2009-01-25Removed all the complex code to locate the forms. Now the adminTim Almdal
screen just has the public and private keys and if the public key is provided a recaptcha box shows up which is used to validate the public private key pair.
2009-01-25Added the ability to identify and present the defined forms to theTim Almdal
adminstrator. The forms are presented as a checklist, I would have preferred a selection list, but Forge doesn't have one. The generated html to contain the recaptcha challenge is defined as <ul> as that was the only way to force itto line up.
2009-01-24Supply a form id on all forms. This id can be used by modules otherTim Almdal
than the originating module to provide additional functionality to the form.
2009-01-23The adminstration portion of the recaptcha module. I haven't figured out ↵Tim Almdal
how to integrate it with the other module forms.