AVH Extended Categories Widgets - Version 3.0.2

Version Description

Download this release

Release Info

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

Code changes from version 3.0.1 to 3.0.2

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.0.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.0.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
@@ -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: 2.9.1
7
- Stable tag: 3.0.1
8
 
9
  The AVH Extended Categories Widgets gives you three widgets for displaying categories.
10
  == Description ==
@@ -100,6 +100,9 @@ None
100
 
101
  == Changelog ==
102
 
 
 
 
103
  = Version 3.0.1 =
104
  * Bugfix: Definition of the metabox for post/page in the wrong place
105
 
4
  Tags: extended, categories, widget, top categories
5
  Requires at least: 2.3
6
  Tested up to: 2.9.1
7
+ Stable tag: 3.0.2
8
 
9
  The AVH Extended Categories Widgets gives you three widgets for displaying categories.
10
  == Description ==
100
 
101
  == Changelog ==
102
 
103
+ = Version 3.0.2 =
104
+ * Bugfix: The plugin conflicts with the standard theme/plugin editor in WordPress
105
+
106
  = Version 3.0.1 =
107
  * Bugfix: Definition of the metabox for post/page in the wrong place
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.0.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.0.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.0.1
7
  Author: Peter van der Does
8
  Author URI: http://blog.avirtualhome.com/
9
 
@@ -37,6 +37,7 @@ define( 'AVHEC_PLUGIN_NAME', $pluginname );
37
  if ( ( float ) $wp_version >= 2.8 ) {
38
  define( 'AVHEC_PLUGIN_URL', WP_PLUGIN_URL . '/' . $dir . '/2.8' );
39
  define( 'AVHEC_WORKING_DIR', AVHEC_PLUGIN_DIR . '/2.8' );
 
40
  require (AVHEC_WORKING_DIR . '/avh-ec.client.php');
41
  } else {
42
  require_once 'widget-pre2.8.php';
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.0.2
7
  Author: Peter van der Does
8
  Author URI: http://blog.avirtualhome.com/
9
 
37
  if ( ( float ) $wp_version >= 2.8 ) {
38
  define( 'AVHEC_PLUGIN_URL', WP_PLUGIN_URL . '/' . $dir . '/2.8' );
39
  define( 'AVHEC_WORKING_DIR', AVHEC_PLUGIN_DIR . '/2.8' );
40
+ unset ($dir);
41
  require (AVHEC_WORKING_DIR . '/avh-ec.client.php');
42
  } else {
43
  require_once 'widget-pre2.8.php';