Groups - Version 1.3.12

Version Description

  • WordPress 3.6 compatibility checked.
  • Fixed table appearance for capabilities and groups admin sections when there are no results.
Download this release

Release Info

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

Code changes from version 1.3.11 to 1.3.12

groups.php CHANGED
@@ -21,13 +21,13 @@
21
  * Plugin Name: Groups
22
  * Plugin URI: http://www.itthinx.com/plugins/groups
23
  * Description: Groups provides group-based user membership management, group-based capabilities and content access control.
24
- * Version: 1.3.11
25
  * Author: itthinx
26
  * Author URI: http://www.itthinx.com
27
  * Donate-Link: http://www.itthinx.com
28
  * License: GPLv3
29
  */
30
- define( 'GROUPS_CORE_VERSION', '1.3.11' );
31
  define( 'GROUPS_FILE', __FILE__ );
32
  if ( !defined( 'GROUPS_CORE_DIR' ) ) {
33
  define( 'GROUPS_CORE_DIR', WP_PLUGIN_DIR . '/groups' );
21
  * Plugin Name: Groups
22
  * Plugin URI: http://www.itthinx.com/plugins/groups
23
  * Description: Groups provides group-based user membership management, group-based capabilities and content access control.
24
+ * Version: 1.3.12
25
  * Author: itthinx
26
  * Author URI: http://www.itthinx.com
27
  * Donate-Link: http://www.itthinx.com
28
  * License: GPLv3
29
  */
30
+ define( 'GROUPS_CORE_VERSION', '1.3.12' );
31
  define( 'GROUPS_FILE', __FILE__ );
32
  if ( !defined( 'GROUPS_CORE_DIR' ) ) {
33
  define( 'GROUPS_CORE_DIR', WP_PLUGIN_DIR . '/groups' );
lib/admin/groups-admin-capabilities.php CHANGED
@@ -409,7 +409,7 @@ function groups_admin_capabilities() {
409
  $output .= '</tr>';
410
  }
411
  } else {
412
- $output .= '<tr><td colspan="10">' . __( 'There are no results.', GROUPS_PLUGIN_DOMAIN ) . '</td></tr>';
413
  }
414
 
415
  $output .= '</tbody>';
409
  $output .= '</tr>';
410
  }
411
  } else {
412
+ $output .= '<tr><td colspan="6">' . __( 'There are no results.', GROUPS_PLUGIN_DOMAIN ) . '</td></tr>';
413
  }
414
 
415
  $output .= '</tbody>';
lib/admin/groups-admin-groups.php CHANGED
@@ -420,7 +420,7 @@ function groups_admin_groups() {
420
  $output .= '</tr>';
421
  }
422
  } else {
423
- $output .= '<tr><td colspan="10">' . __( 'There are no results.', GROUPS_PLUGIN_DOMAIN ) . '</td></tr>';
424
  }
425
 
426
  $output .= '</tbody>';
420
  $output .= '</tr>';
421
  }
422
  } else {
423
+ $output .= '<tr><td colspan="7">' . __( 'There are no results.', GROUPS_PLUGIN_DOMAIN ) . '</td></tr>';
424
  }
425
 
426
  $output .= '</tbody>';
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: itthinx
3
  Donate link: http://www.itthinx.com/plugins/groups
4
  Tags: access, access control, capability, capabilities, content, download, downloads, file, file access, files, group, groups, member, members, membership, memberships, paypal, permission, permissions, subscription, subscriptions, woocommerce
5
  Requires at least: 3.3
6
- Tested up to: 3.5.1
7
- Stable tag: 1.3.11
8
  License: GPLv3
9
 
10
  Groups provides group-based user membership management, group-based capabilities and content access control.
@@ -21,10 +21,12 @@ It integrates standard WordPress capabilities and application-specific capabilit
21
  - [Groups File Access](http://www.itthinx.com/plugins/groups-file-access/) Groups File Access is an extension that allows to provide file download links for authorized users. Access to files is restricted to users by their group membership.
22
  - [Groups Forums](http://www.itthinx.com/plugins/groups-forums/) A powerful and yet light-weight forum system.
23
  - [Groups Jigoshop](http://jigoshop.com/product/subscriptions/) Groups integration for Jigoshop that supports memberships and subscriptions.
 
24
  - [Groups Notifications](http://www.itthinx.com/plugins/groups-notifications/) Adds customizable notifications for events related to Groups.
25
  - [Groups PayPal](http://www.itthinx.com/plugins/groups-paypal/) Groups for PayPal allows to sell memberships and subscriptions with Groups.
26
  - [Groups Subscriptions](http://www.itthinx.com/plugins/groups-subscriptions/) A subscription framework for Groups used by other extensions.
27
  - [Groups WooCommerce](http://www.woothemes.com/extension/groups-woocommerce/) Groups for WooCommerce is a WordPress plugin that allows you to sell memberships.
 
28
  - [Groups 404 Redirect](http://wordpress.org/extend/plugins/groups-404-redirect/) Redirects 404's caused by hits on pages that are protected by Groups.
29
 
30
  ### Features ###
@@ -358,6 +360,10 @@ See also [Groups](http://www.itthinx.com/plugins/groups/)
358
 
359
  == Changelog ==
360
 
 
 
 
 
361
  = 1.3.11 =
362
  * Fix: Access restriction capabilities must be disjunctive.
363
  * Added: List of groups can be shown in user profiles on the back end and group assignments can be edited by group admins.
@@ -491,6 +497,9 @@ Some installations wouldn't work correctly, showing no capabilities and making i
491
 
492
  == Upgrade Notice ==
493
 
 
 
 
494
  = 1.3.11 =
495
  * Fixes too restrictive access: the capabilities used to restrict access to posts should be disjunctive. Adds the option to show and edit group memberships in user profiles.
496
 
3
  Donate link: http://www.itthinx.com/plugins/groups
4
  Tags: access, access control, capability, capabilities, content, download, downloads, file, file access, files, group, groups, member, members, membership, memberships, paypal, permission, permissions, subscription, subscriptions, woocommerce
5
  Requires at least: 3.3
6
+ Tested up to: 3.6
7
+ Stable tag: 1.3.12
8
  License: GPLv3
9
 
10
  Groups provides group-based user membership management, group-based capabilities and content access control.
21
  - [Groups File Access](http://www.itthinx.com/plugins/groups-file-access/) Groups File Access is an extension that allows to provide file download links for authorized users. Access to files is restricted to users by their group membership.
22
  - [Groups Forums](http://www.itthinx.com/plugins/groups-forums/) A powerful and yet light-weight forum system.
23
  - [Groups Jigoshop](http://jigoshop.com/product/subscriptions/) Groups integration for Jigoshop that supports memberships and subscriptions.
24
+ - [Groups Newsletters](http://www.itthinx.com/plugins/groups-newsletters/) Newsletter Campaigns for Subscribers and Groups.
25
  - [Groups Notifications](http://www.itthinx.com/plugins/groups-notifications/) Adds customizable notifications for events related to Groups.
26
  - [Groups PayPal](http://www.itthinx.com/plugins/groups-paypal/) Groups for PayPal allows to sell memberships and subscriptions with Groups.
27
  - [Groups Subscriptions](http://www.itthinx.com/plugins/groups-subscriptions/) A subscription framework for Groups used by other extensions.
28
  - [Groups WooCommerce](http://www.woothemes.com/extension/groups-woocommerce/) Groups for WooCommerce is a WordPress plugin that allows you to sell memberships.
29
+ - [Groups 2 MailChimp](http://eggemplo.com/plugins/groups2mailchimp/) Synchronizes groups with MailChimp lists.
30
  - [Groups 404 Redirect](http://wordpress.org/extend/plugins/groups-404-redirect/) Redirects 404's caused by hits on pages that are protected by Groups.
31
 
32
  ### Features ###
360
 
361
  == Changelog ==
362
 
363
+ = 1.3.12 =
364
+ * WordPress 3.6 compatibility checked.
365
+ * Fixed table appearance for capabilities and groups admin sections when there are no results.
366
+
367
  = 1.3.11 =
368
  * Fix: Access restriction capabilities must be disjunctive.
369
  * Added: List of groups can be shown in user profiles on the back end and group assignments can be edited by group admins.
497
 
498
  == Upgrade Notice ==
499
 
500
+ = 1.3.12 =
501
+ * WordPress 3.6 compatibility checked and minor fixes.
502
+
503
  = 1.3.11 =
504
  * Fixes too restrictive access: the capabilities used to restrict access to posts should be disjunctive. Adds the option to show and edit group memberships in user profiles.
505