diff options
author | Andy Staudacher <andy.st@gmail.com> | 2009-07-02 20:50:29 -0700 |
---|---|---|
committer | Andy Staudacher <andy.st@gmail.com> | 2009-07-02 20:50:29 -0700 |
commit | 72281d2b448d77afde709929abaf3ab92883ccce (patch) | |
tree | 8de0bc958a628253e187c7d602c29a1d926248cf /modules/recaptcha/controllers | |
parent | 93e9efed971c1eee8e754c900972c863984e066e (diff) |
Fix for ticket 470. Replace ReCaptcha with reCAPTCHA in user visible strings.
Diffstat (limited to 'modules/recaptcha/controllers')
-rw-r--r-- | modules/recaptcha/controllers/admin_recaptcha.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/recaptcha/controllers/admin_recaptcha.php b/modules/recaptcha/controllers/admin_recaptcha.php index 5813df8b..6874fce9 100644 --- a/modules/recaptcha/controllers/admin_recaptcha.php +++ b/modules/recaptcha/controllers/admin_recaptcha.php @@ -32,8 +32,8 @@ class Admin_Recaptcha_Controller extends Admin_Controller { if ($public_key && $private_key) { module::set_var("recaptcha", "public_key", $public_key); module::set_var("recaptcha", "private_key", $private_key); - message::success(t("Recaptcha configured!")); - log::success("recaptcha", t("Recaptcha public and private keys set")); + message::success(t("reCAPTCHA configured!")); + log::success("recaptcha", t("reCAPTCHA public and private keys set")); url::redirect("admin/recaptcha"); } else if ($public_key && !$private_key) { $form->configure_recaptcha->private_key->add_error("invalid"); @@ -42,8 +42,8 @@ class Admin_Recaptcha_Controller extends Admin_Controller { } else { module::set_var("recaptcha", "public_key", ""); module::set_var("recaptcha", "private_key", ""); - message::success(t("Recaptcha disabled!")); - log::success("recaptcha", t("Recaptcha public and private keys cleared")); + message::success(t("reCAPTCHA disabled!")); + log::success("recaptcha", t("reCAPTCHA public and private keys cleared")); url::redirect("admin/recaptcha"); } } |