Groups - Version 2.16.1

Version Description

Download this release

Release Info

Developer itthinx
Plugin Icon 128x128 Groups
Version 2.16.1
Comparing to
See all releases

Code changes from version 2.16.0 to 2.16.1

Files changed (4) hide show
  1. changelog.txt +3 -0
  2. groups.php +2 -2
  3. lib/admin/class-groups-admin.php +1 -1
  4. readme.txt +1 -1
changelog.txt CHANGED
@@ -1,5 +1,8 @@
1
  == Groups by itthinx - changelog.txt
2
 
 
 
 
3
  = 2.16.0 =
4
  * WordPress 6.0 compatible.
5
  * Fixed slashes appearing in term-related group names in the Groups column of the administrative screens for posts.
1
  == Groups by itthinx - changelog.txt
2
 
3
+ = 2.16.1 =
4
+ * Fixes a parse error caused by a trailing `,`.
5
+
6
  = 2.16.0 =
7
  * WordPress 6.0 compatible.
8
  * Fixed slashes appearing in term-related group names in the Groups column of the administrative screens for posts.
groups.php CHANGED
@@ -21,7 +21,7 @@
21
  * Plugin Name: Groups
22
  * Plugin URI: https://www.itthinx.com/plugins/groups
23
  * Description: Groups provides group-based user membership management, group-based capabilities and content access control.
24
- * Version: 2.16.0
25
  * Author: itthinx
26
  * Author URI: https://www.itthinx.com
27
  * Donate-Link: https://www.itthinx.com/shop/
@@ -32,7 +32,7 @@
32
  if ( !defined( 'ABSPATH' ) ) {
33
  exit;
34
  }
35
- define( 'GROUPS_CORE_VERSION', '2.16.0' );
36
  define( 'GROUPS_FILE', __FILE__ );
37
  if ( !defined( 'GROUPS_CORE_DIR' ) ) {
38
  define( 'GROUPS_CORE_DIR', untrailingslashit( plugin_dir_path( __FILE__ ) ) );
21
  * Plugin Name: Groups
22
  * Plugin URI: https://www.itthinx.com/plugins/groups
23
  * Description: Groups provides group-based user membership management, group-based capabilities and content access control.
24
+ * Version: 2.16.1
25
  * Author: itthinx
26
  * Author URI: https://www.itthinx.com
27
  * Donate-Link: https://www.itthinx.com/shop/
32
  if ( !defined( 'ABSPATH' ) ) {
33
  exit;
34
  }
35
+ define( 'GROUPS_CORE_VERSION', '2.16.1' );
36
  define( 'GROUPS_FILE', __FILE__ );
37
  if ( !defined( 'GROUPS_CORE_DIR' ) ) {
38
  define( 'GROUPS_CORE_DIR', untrailingslashit( plugin_dir_path( __FILE__ ) ) );
lib/admin/class-groups-admin.php CHANGED
@@ -247,7 +247,7 @@ class Groups_Admin {
247
  GROUPS_ADMINISTER_GROUPS,
248
  'groups-network-admin',
249
  apply_filters( 'groups_add_menu_page_function', 'groups_network_admin_options' ),
250
- 'none', // @since 2.16.0 CSS icon from SVG
251
  );
252
  $pages[] = $page;
253
  add_action( 'admin_print_styles-' . $page, array( __CLASS__, 'admin_print_styles' ) );
247
  GROUPS_ADMINISTER_GROUPS,
248
  'groups-network-admin',
249
  apply_filters( 'groups_add_menu_page_function', 'groups_network_admin_options' ),
250
+ 'none' // @since 2.16.0 CSS icon from SVG
251
  );
252
  $pages[] = $page;
253
  add_action( 'admin_print_styles-' . $page, array( __CLASS__, 'admin_print_styles' ) );
readme.txt CHANGED
@@ -5,7 +5,7 @@ Tags: groups, access, access control, membership, memberships, member, members,
5
  Requires at least: 5.5
6
  Tested up to: 6.0
7
  Requires PHP: 5.6.0
8
- Stable tag: 2.16.0
9
  License: GPLv3
10
 
11
  Groups is an efficient and powerful solution, providing group-based user membership management, group-based capabilities and content access control.
5
  Requires at least: 5.5
6
  Tested up to: 6.0
7
  Requires PHP: 5.6.0
8
+ Stable tag: 2.16.1
9
  License: GPLv3
10
 
11
  Groups is an efficient and powerful solution, providing group-based user membership management, group-based capabilities and content access control.