Groups - Version 1.3.4

Version Description

  • WP 3.5 cosmetics
Download this release

Release Info

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

Code changes from version 1.3.3 to 1.3.4

css/groups_admin.css CHANGED
@@ -31,8 +31,6 @@
31
  .manage a.add {
32
  text-decoration: none;
33
  cursor: pointer;
34
- padding-top: 4px;
35
- padding-bottom: 6px;
36
  }
37
  .manage a.add .icon {
38
  vertical-align: middle;
31
  .manage a.add {
32
  text-decoration: none;
33
  cursor: pointer;
 
 
34
  }
35
  .manage a.add .icon {
36
  vertical-align: middle;
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.3
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.3' );
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.4
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.4' );
31
  define( 'GROUPS_FILE', __FILE__ );
32
  if ( !defined( 'GROUPS_CORE_DIR' ) ) {
33
  define( 'GROUPS_CORE_DIR', WP_PLUGIN_DIR . '/groups' );
lib/admin/class-groups-admin-users.php CHANGED
@@ -97,7 +97,7 @@ class Groups_Admin_Users {
97
 
98
  $group_table = _groups_get_tablename( "group" );
99
  // groups select
100
- $groups_select = "<select name='group_id'>";
101
  $groups = $wpdb->get_results( "SELECT * FROM $group_table ORDER BY name" );
102
  foreach( $groups as $group ) {
103
  $groups_select .= "<option value='" . esc_attr( $group->group_id ) . "'>" . wp_filter_nohtml_kses( $group->name ) . "</option>";
97
 
98
  $group_table = _groups_get_tablename( "group" );
99
  // groups select
100
+ $groups_select = "<select class='groups' style='float:none;' name='group_id'>";
101
  $groups = $wpdb->get_results( "SELECT * FROM $group_table ORDER BY name" );
102
  foreach( $groups as $group ) {
103
  $groups_select .= "<option value='" . esc_attr( $group->group_id ) . "'>" . wp_filter_nohtml_kses( $group->name ) . "</option>";
readme.txt CHANGED
@@ -4,7 +4,7 @@ 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
7
- Stable tag: 1.3.3
8
  License: GPLv3
9
 
10
  Groups provides group-based user membership management, group-based capabilities and content access control.
@@ -322,6 +322,9 @@ See also [Groups](http://www.itthinx.com/plugins/groups/)
322
 
323
  == Changelog ==
324
 
 
 
 
325
  = 1.3.3 =
326
  * WP 3.5 compatibility http://core.trac.wordpress.org/ticket/22262
327
 
@@ -414,6 +417,9 @@ Some installations wouldn't work correctly, showing no capabilities and making i
414
 
415
  == Upgrade Notice ==
416
 
 
 
 
417
  = 1.3.3 =
418
  * Compatibility update for WordPress 3.5.
419
 
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
7
+ Stable tag: 1.3.4
8
  License: GPLv3
9
 
10
  Groups provides group-based user membership management, group-based capabilities and content access control.
322
 
323
  == Changelog ==
324
 
325
+ = 1.3.4 =
326
+ * WP 3.5 cosmetics
327
+
328
  = 1.3.3 =
329
  * WP 3.5 compatibility http://core.trac.wordpress.org/ticket/22262
330
 
417
 
418
  == Upgrade Notice ==
419
 
420
+ = 1.3.4 =
421
+ * Please upgrade for WordPress 3.5 compatibility & cosmetics.
422
+
423
  = 1.3.3 =
424
  * Compatibility update for WordPress 3.5.
425