From 1c2401b2fe987c55711fd96dbdd7af951351b5a9 Mon Sep 17 00:00:00 2001 From: nikitasinelnikov Date: Fri, 31 Jul 2020 00:44:55 +0300 Subject: [PATCH] - added no password required config setting; --- includes/class-config.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/includes/class-config.php b/includes/class-config.php index 28382baa..7f319d16 100644 --- a/includes/class-config.php +++ b/includes/class-config.php @@ -526,7 +526,8 @@ if ( ! class_exists( 'um\Config' ) ) { 'account_tab_privacy' => 1, 'account_tab_notifications' => 1, 'account_tab_delete' => 1, - 'delete_account_text' => __('Are you sure you want to delete your account? This will erase all of your account data from the site. To delete your account enter your password below','ultimate-member'), + 'delete_account_text' => __( 'Are you sure you want to delete your account? This will erase all of your account data from the site. To delete your account enter your password below.', 'ultimate-member' ), + 'delete_account_no_pass_required_text' => __( 'Are you sure you want to delete your account? This will erase all of your account data from the site. To delete your account, click on the button below.', 'ultimate-member' ), 'account_name' => 1, 'account_name_disable' => 0, 'account_name_require' => 1,