AVH Extended Categories Widgets - Version 3.7.1

Version Description

Download this release

Release Info

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

Code changes from version 3.7.0 to 3.7.1

3.3/class/avh-ec.admin.php CHANGED
@@ -127,7 +127,7 @@ class AVH_EC_Admin
127
  function handleEditTerm ($term_id, $tt_id, $taxonomy)
128
  {
129
  $tax_meta = get_option($this->core->db_options_tax_meta);
130
- if (isset($_POST['avhec_categorygroup']) && $tax_meta[$taxonomy][$term_id]['category_group_term_id'] != $_POST['avhec_categorygroup']) {
131
  $tax_meta[$taxonomy][$term_id]['category_group_term_id'] = $_POST['avhec_categorygroup'];
132
  update_option($this->core->db_options_tax_meta, $tax_meta);
133
  }
127
  function handleEditTerm ($term_id, $tt_id, $taxonomy)
128
  {
129
  $tax_meta = get_option($this->core->db_options_tax_meta);
130
+ if (isset($_POST['avhec_categorygroup']) && isset($tax_meta[$taxonomy][$term_id]['category_group_term_id']) && $tax_meta[$taxonomy][$term_id]['category_group_term_id'] != $_POST['avhec_categorygroup']) {
131
  $tax_meta[$taxonomy][$term_id]['category_group_term_id'] = $_POST['avhec_categorygroup'];
132
  update_option($this->core->db_options_tax_meta, $tax_meta);
133
  }
readme.txt CHANGED
@@ -4,7 +4,7 @@ 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.5
7
- Stable tag: 3.7.0
8
 
9
  The AVH Extended Categories Widgets gives you three widgets for displaying categories.
10
  == Description ==
@@ -135,8 +135,8 @@ Whether Widget 2 shows Movie or Music depends on the creation order of groups. I
135
  None
136
 
137
  == Changelog ==
138
- = Version 3.8.0-dev.2 =
139
- * Preparation for new development cycle.
140
 
141
  = Version 3.7.0 =
142
  * Fix uninstall
4
  Tags: extended, categories, widget, top categories
5
  Requires at least: 2.3
6
  Tested up to: 3.5
7
+ Stable tag: 3.7.1
8
 
9
  The AVH Extended Categories Widgets gives you three widgets for displaying categories.
10
  == Description ==
135
  None
136
 
137
  == Changelog ==
138
+ = Version 3.7.1 =
139
+ * When updating a category a warning is can be shown.
140
 
141
  = Version 3.7.0 =
142
  * Fix uninstall
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.8.0-dev.2
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.7.1
7
  Author: Peter van der Does
8
  Author URI: http://blog.avirtualhome.com/
9