From 0600627a677ff2e57e12045c3a75c33c76bf9262 Mon Sep 17 00:00:00 2001 From: Mykyta Synelnikov Date: Tue, 23 May 2023 17:20:15 +0300 Subject: [PATCH 1/3] - 2.6.2 version initial commit; --- readme.txt | 3 +++ ultimate-member.php | 12 ++++++++++-- 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/readme.txt b/readme.txt index 9440cc54..baf33998 100644 --- a/readme.txt +++ b/readme.txt @@ -163,6 +163,9 @@ No, you do not need to use our plugin’s login or registration pages and can us * To learn more about version 2.1 please see this [docs](https://docs.ultimatemember.com/article/1512-upgrade-2-1-0) * UM2.1+ is a significant update to the Member Directories' code base from 2.0.x. Please make sure you take a full-site backup with restore point before updating the plugin += 2.6.2: June xx, 2023 = + + = 2.6.1: May 25, 2023 = * Enhancements: diff --git a/ultimate-member.php b/ultimate-member.php index 3cdb44cb..ad1603f5 100644 --- a/ultimate-member.php +++ b/ultimate-member.php @@ -3,7 +3,7 @@ Plugin Name: Ultimate Member Plugin URI: http://ultimatemember.com/ Description: The easiest way to create powerful online communities and beautiful user profiles with WordPress -Version: 2.6.1 +Version: 2.6.2-alpha Author: Ultimate Member Author URI: http://ultimatemember.com/ Text Domain: ultimate-member @@ -11,14 +11,22 @@ Text Domain: ultimate-member defined( 'ABSPATH' ) || exit; -require_once( ABSPATH . 'wp-admin/includes/plugin.php' ); +require_once ABSPATH . 'wp-admin/includes/plugin.php'; $plugin_data = get_plugin_data( __FILE__ ); +// phpcs:disable Generic.NamingConventions.UpperCaseConstantName define( 'um_url', plugin_dir_url( __FILE__ ) ); define( 'um_path', plugin_dir_path( __FILE__ ) ); define( 'um_plugin', plugin_basename( __FILE__ ) ); define( 'ultimatemember_version', $plugin_data['Version'] ); define( 'ultimatemember_plugin_name', $plugin_data['Name'] ); +// phpcs:enable Generic.NamingConventions.UpperCaseConstantName + +define( 'UM_URL', plugin_dir_url( __FILE__ ) ); +define( 'UM_PATH', plugin_dir_path( __FILE__ ) ); +define( 'UM_PLUGIN', plugin_basename( __FILE__ ) ); +define( 'UM_VERSION', $plugin_data['Version'] ); +define( 'UM_PLUGIN_NAME', $plugin_data['Name'] ); require_once 'includes/class-functions.php'; require_once 'includes/class-init.php'; From 3c29e8f22be8c2120c024ecc32c42344dabe9b19 Mon Sep 17 00:00:00 2001 From: Mykyta Synelnikov Date: Mon, 29 May 2023 22:00:29 +0300 Subject: [PATCH 2/3] - updated version number; --- readme.txt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/readme.txt b/readme.txt index 314acecb..610d2ba3 100644 --- a/readme.txt +++ b/readme.txt @@ -163,6 +163,10 @@ No, you do not need to use our plugin’s login or registration pages and can us * To learn more about version 2.1 please see this [docs](https://docs.ultimatemember.com/article/1512-upgrade-2-1-0) * UM2.1+ is a significant update to the Member Directories' code base from 2.0.x. Please make sure you take a full-site backup with restore point before updating the plugin += 2.6.2: June xx, 2023 = + + + = 2.6.1: May 29, 2023 = * Enhancements: From 6501f48bbd4d5c74997bbf1382326063cffc7715 Mon Sep 17 00:00:00 2001 From: Mykyta Synelnikov Date: Wed, 31 May 2023 10:20:30 +0300 Subject: [PATCH 3/3] - email notifications hotfix #1194; --- includes/core/class-mail.php | 2 +- readme.txt | 6 ++++-- ultimate-member.php | 2 +- 3 files changed, 6 insertions(+), 4 deletions(-) diff --git a/includes/core/class-mail.php b/includes/core/class-mail.php index 1474a316..b7ee7729 100644 --- a/includes/core/class-mail.php +++ b/includes/core/class-mail.php @@ -411,7 +411,7 @@ if ( ! class_exists( 'um\core\Mail' ) ) { return; } - if ( ! empty( UM()->options()->get( $template . '_on' ) ) ) { + if ( empty( UM()->options()->get( $template . '_on' ) ) ) { return; } /** diff --git a/readme.txt b/readme.txt index 610d2ba3..7aa975b8 100644 --- a/readme.txt +++ b/readme.txt @@ -7,7 +7,7 @@ Tags: community, member, membership, user-profile, user-registration Requires PHP: 5.6 Requires at least: 5.5 Tested up to: 6.2 -Stable tag: 2.6.1 +Stable tag: 2.6.2 License: GNU Version 2 or Any Later Version License URI: http://www.gnu.org/licenses/gpl-3.0.txt @@ -163,9 +163,11 @@ No, you do not need to use our plugin’s login or registration pages and can us * To learn more about version 2.1 please see this [docs](https://docs.ultimatemember.com/article/1512-upgrade-2-1-0) * UM2.1+ is a significant update to the Member Directories' code base from 2.0.x. Please make sure you take a full-site backup with restore point before updating the plugin -= 2.6.2: June xx, 2023 = += 2.6.2: May 31, 2023 = +* Bugfixes: + - Fixed: Email notifications sending = 2.6.1: May 29, 2023 = diff --git a/ultimate-member.php b/ultimate-member.php index ad1603f5..ac36f83f 100644 --- a/ultimate-member.php +++ b/ultimate-member.php @@ -3,7 +3,7 @@ Plugin Name: Ultimate Member Plugin URI: http://ultimatemember.com/ Description: The easiest way to create powerful online communities and beautiful user profiles with WordPress -Version: 2.6.2-alpha +Version: 2.6.2 Author: Ultimate Member Author URI: http://ultimatemember.com/ Text Domain: ultimate-member