AVH Extended Categories Widgets - Version 3.2.2

Version Description

Download this release

Release Info

Developer petervanderdoes
Plugin Icon wp plugin AVH Extended Categories Widgets
Version 3.2.2
Comparing to
See all releases

Code changes from version 3.2.1 to 3.2.2

2.8/class/avh-ec.admin.php CHANGED
@@ -66,7 +66,7 @@ class AVH_EC_Admin
66
  function metaboxPostCategoryGroup ( $post )
67
  {
68
  $options = $this->core->getOptions();
69
- echo '<p id=\'avhec-cat-group\'';
70
 
71
  echo '<input type="hidden" name="avhec_category_group_nonce" id="avhec_category_group_nonce" value="' . wp_create_nonce( 'avhec_category_group_nonce' ) . '" />';
72
 
@@ -100,6 +100,7 @@ class AVH_EC_Admin
100
  */
101
  function actionSaveCategoryGroupTaxonomy ( $post_id )
102
  {
 
103
  if ( ! wp_verify_nonce( $_POST['avhec_category_group_nonce'], 'avhec_category_group_nonce' ) ) {
104
  return $post_id;
105
  }
66
  function metaboxPostCategoryGroup ( $post )
67
  {
68
  $options = $this->core->getOptions();
69
+ echo '<p id=\'avhec-cat-group\'>';
70
 
71
  echo '<input type="hidden" name="avhec_category_group_nonce" id="avhec_category_group_nonce" value="' . wp_create_nonce( 'avhec_category_group_nonce' ) . '" />';
72
 
100
  */
101
  function actionSaveCategoryGroupTaxonomy ( $post_id )
102
  {
103
+
104
  if ( ! wp_verify_nonce( $_POST['avhec_category_group_nonce'], 'avhec_category_group_nonce' ) ) {
105
  return $post_id;
106
  }
2.8/class/avh-ec.category-group.php CHANGED
@@ -80,8 +80,8 @@ class AVH_EC_Category_Group
80
  * Setup Group Categories Taxonomy
81
  */
82
  if ( ! is_taxonomy( $this->taxonomy_name ) ) {
83
- register_taxonomy( $this->taxonomy_name, 'post', array ('hierarchical' => false, 'label' => __( 'Category Groups', 'avh-ec' ), 'query_var' => true, 'rewrite' => true ) );
84
- register_taxonomy( $this->taxonomy_name, 'page', array ('hierarchical' => false, 'label' => __( 'Category Groups', 'avh-ec' ), 'query_var' => true, 'rewrite' => true ) );
85
  }
86
 
87
  // Setup the standard groups if the none group does not exists.
80
  * Setup Group Categories Taxonomy
81
  */
82
  if ( ! is_taxonomy( $this->taxonomy_name ) ) {
83
+ register_taxonomy( $this->taxonomy_name, 'post', array ('hierarchical' => false, 'label' => __( 'Category Groups', 'avh-ec' ), 'query_var' => true, 'rewrite' => true, 'show_ui'=>false ) );
84
+ register_taxonomy( $this->taxonomy_name, 'page', array ('hierarchical' => false, 'label' => __( 'Category Groups', 'avh-ec' ), 'query_var' => true, 'rewrite' => true, 'show_ui'=>false ) );
85
  }
86
 
87
  // Setup the standard groups if the none group does not exists.
2.8/class/avh-ec.core.php CHANGED
@@ -23,7 +23,7 @@ class AVH_EC_Core
23
  */
24
  $catgrp = & AVH_EC_Singleton::getInstance( 'AVH_EC_Category_Group' );
25
 
26
- $this->version = '3.2.1';
27
  $this->comment = '<!-- AVH Extended Categories version ' . $this->version . ' | http://blog.avirtualhome.com/wordpress-plugins/ -->';
28
  $db_version = 2;
29
  $this->db_options_core = 'avhec';
23
  */
24
  $catgrp = & AVH_EC_Singleton::getInstance( 'AVH_EC_Category_Group' );
25
 
26
+ $this->version = '3.2.2';
27
  $this->comment = '<!-- AVH Extended Categories version ' . $this->version . ' | http://blog.avirtualhome.com/wordpress-plugins/ -->';
28
  $db_version = 2;
29
  $this->db_options_core = 'avhec';
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: petervanderdoes
3
  Donate link: http://blog.avirtualhome.com/wordpress-plugins/
4
  Tags: extended, categories, widget, top categories
5
  Requires at least: 2.3
6
- Tested up to: 3.0-Beta1
7
- Stable tag: 3.2.1
8
 
9
  The AVH Extended Categories Widgets gives you three widgets for displaying categories.
10
  == Description ==
@@ -99,6 +99,10 @@ I have also setup a project in Launchpad for translating the plug-in. Just visit
99
  None
100
 
101
  == Changelog ==
 
 
 
 
102
  = Version 3.2.1 =
103
  * Speed improvements in the admin section when there are a lot of categories and several Categories widgets.
104
 
3
  Donate link: http://blog.avirtualhome.com/wordpress-plugins/
4
  Tags: extended, categories, widget, top categories
5
  Requires at least: 2.3
6
+ Tested up to: 3.0.1
7
+ Stable tag: 3.2.2
8
 
9
  The AVH Extended Categories Widgets gives you three widgets for displaying categories.
10
  == Description ==
99
  None
100
 
101
  == Changelog ==
102
+ = Version 3.2.2 =
103
+ * Bugfix: Problem with Chrome and saving the category group.
104
+ * Bugfix: Extra metabox displayed. The plugin uses it's own metabox for Category Group selection.
105
+
106
  = Version 3.2.1 =
107
  * Speed improvements in the admin section when there are a lot of categories and several Categories widgets.
108
 
widget-pre2.8.php CHANGED
@@ -7,7 +7,7 @@ function widget_extended_categories_init() {
7
  }
8
 
9
  function widget_extended_categories($args, $number = 1) {
10
- $version = '3.2.1';
11
  // Check for version
12
  require (ABSPATH . WPINC . '/version.php');
13
  if ( version_compare($wp_version, '2.5.1', '<') ) {
7
  }
8
 
9
  function widget_extended_categories($args, $number = 1) {
10
+ $version = '3.2.2';
11
  // Check for version
12
  require (ABSPATH . WPINC . '/version.php');
13
  if ( version_compare($wp_version, '2.5.1', '<') ) {
widget_extended_categories.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: AVH Extended Categories Widgets
4
  Plugin URI: http://blog.avirtualhome.com/wordpress-plugins
5
  Description: Replacement of the category widget to allow for greater customization of the category widget.
6
- Version: 3.2.1
7
  Author: Peter van der Does
8
  Author URI: http://blog.avirtualhome.com/
9
 
3
  Plugin Name: AVH Extended Categories Widgets
4
  Plugin URI: http://blog.avirtualhome.com/wordpress-plugins
5
  Description: Replacement of the category widget to allow for greater customization of the category widget.
6
+ Version: 3.2.2
7
  Author: Peter van der Does
8
  Author URI: http://blog.avirtualhome.com/
9