diff --git a/wp-content/plugins/wp-recaptcha/recaptcha.php b/wp-content/plugins/wp-recaptcha/recaptcha.php index 5da215f856858260b871777ce3199734bdd56188..72f8ca015541c28990f4bc8a8652a460d8cb319b 100644 --- a/wp-content/plugins/wp-recaptcha/recaptcha.php +++ b/wp-content/plugins/wp-recaptcha/recaptcha.php @@ -102,8 +102,14 @@ class ReCAPTCHAPlugin extends WPPlugin // set the default options function register_default_options() { - if ($this->options) + if ($this->options) { + if ($this->keys_missing()) { + $this->options['site_key'] = GLOBAL_RECAPTCHA_KEY; + $this->options['secret'] = GLOBAL_RECAPTCHA_PRIVATE_KEY; + WPPlugin::add_options($this->options_name, $this->options); + } return; + } $option_defaults = array(); $old_options = WPPlugin::retrieve_options("recaptcha"); if ($old_options) { @@ -163,9 +169,11 @@ class ReCAPTCHAPlugin extends WPPlugin } function missing_keys_notice() { + /* if ($this->keys_missing()) { $this->create_error_notice('reCAPTCHA API Keys are missing.'); } + */ } function validate_dropdown($array, $key, $value) {