Skip to content

Commit

Permalink
Updates to 1.11.11
Browse files Browse the repository at this point in the history
  • Loading branch information
MemberPress committed Jul 19, 2023
1 parent b10c4c4 commit a37e195
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 12 deletions.
12 changes: 9 additions & 3 deletions app/integrations/google-captcha/Integration.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,17 +18,23 @@ public function load_hooks() {

if(gglcptch_is_recaptcha_required('memberpress_checkout')) {
add_action('mepr-checkout-before-submit', array($this, 'add_recaptcha'));
add_filter('mepr-validate-signup', array($this, 'verify_recaptcha_checkout'));
if(!function_exists('gglcptch_memberpress_checkout_check')) {
add_filter('mepr-validate-signup', array($this, 'verify_recaptcha_checkout'));
}
}

if(gglcptch_is_recaptcha_required('memberpress_login')) {
add_action('mepr-login-form-before-submit', array($this, 'add_recaptcha'));
add_filter('mepr-validate-login', array($this, 'verify_recaptcha_login'));
if(!function_exists('gglcptch_memberpress_login_check')) {
add_filter('mepr-validate-login', array($this, 'verify_recaptcha_login'));
}
}

if(gglcptch_is_recaptcha_required('memberpress_forgot_password')) {
add_action('mepr-forgot-password-form', array($this, 'add_recaptcha'));
add_filter('mepr-validate-forgot-password', array($this, 'verify_recaptcha_forgot_password'));
if(!function_exists('gglcptch_memberpress_forgot_password_check')) {
add_filter('mepr-validate-forgot-password', array($this, 'verify_recaptcha_forgot_password'));
}
}
}

Expand Down
16 changes: 8 additions & 8 deletions i18n/memberpress.pot
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
# This file is distributed under the same license as the MemberPress plugin.
msgid ""
msgstr ""
"Project-Id-Version: MemberPress 1.11.10\n"
"Project-Id-Version: MemberPress 1.11.11\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/memberpress\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <[email protected]>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"POT-Creation-Date: 2023-07-14T16:28:13-06:00\n"
"POT-Creation-Date: 2023-07-18T11:30:16-06:00\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"X-Generator: WP-CLI 2.8.1\n"
"X-Domain: memberpress\n"
Expand Down Expand Up @@ -5050,21 +5050,21 @@ msgstr ""
msgid "Forum Profile"
msgstr ""

#: app/integrations/google-captcha/Integration.php:36
#: app/integrations/google-captcha/Integration.php:42
msgid "MemberPress checkout form"
msgstr ""

#: app/integrations/google-captcha/Integration.php:37
#: app/integrations/google-captcha/Integration.php:43
msgid "MemberPress login form"
msgstr ""

#: app/integrations/google-captcha/Integration.php:38
#: app/integrations/google-captcha/Integration.php:44
msgid "MemberPress forgot password form"
msgstr ""

#: app/integrations/google-captcha/Integration.php:55
#: app/integrations/google-captcha/Integration.php:65
#: app/integrations/google-captcha/Integration.php:75
#: app/integrations/google-captcha/Integration.php:61
#: app/integrations/google-captcha/Integration.php:71
#: app/integrations/google-captcha/Integration.php:81
msgid "Captcha verification failed"
msgstr ""

Expand Down
2 changes: 1 addition & 1 deletion memberpress.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Plugin Name: MemberPress Pro 30 (Legacy)
Plugin URI: http://www.memberpress.com/
Description: The membership plugin that makes it easy to accept payments for access to your content and digital products.
Version: 1.11.10
Version: 1.11.11
Author: Caseproof, LLC
Author URI: http://caseproof.com/
Text Domain: memberpress
Expand Down

0 comments on commit a37e195

Please sign in to comment.