Changeset 32795 for plugins/sfReCaptchaPlugin
- Timestamp:
- 07/19/11 14:39:07 (2 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
plugins/sfReCaptchaPlugin/branches/1.3/lib/helper/recaptchaHelper.php
r32794 r32795 200 200 } 201 201 202 $response = _recaptcha_http_post(RECAPTCHA_VERIFY_SERVER, "/ verify", array(202 $response = _recaptcha_http_post(RECAPTCHA_VERIFY_SERVER, "/recaptcha/api/verify", array( 203 203 'privatekey' => $privkey, 204 204 'remoteip' => $remoteip, … … 232 232 function recaptcha_get_signup_url($domain = null, $appname = null) 233 233 { 234 return 'http ://recaptcha.net/api/getkey?' . _recaptcha_qsencode(array('domain' => $domain, 'app' => $appname));234 return 'https://www.google.com/recaptcha/admin/create?' . _recaptcha_qsencode(array('domain' => $domain, 'app' => $appname)); 235 235 } 236 236