AVH Extended Categories Widgets - Version 2.0.1

Version Description

Download this release

Release Info

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

Code changes from version 2.0 to 2.0.1

2.8/class/avh-ec.core.php CHANGED
@@ -10,7 +10,7 @@ class AVHExtendendCategoriesCore
10
  */
11
  function __construct ()
12
  {
13
- $this->version = '2.0';
14
  $this->comment = '<!-- AVH Extended Categories version ' . $this->version . ' | http://blog.avirtualhome.com/wordpress-plugins/ -->';
15
  }
16
 
@@ -33,7 +33,7 @@ class AVHExtendendCategoriesCore
33
  {
34
  static $_instance;
35
  if ( $_instance === null ) {
36
- $_instance = & new self( );
37
  }
38
  return $_instance;
39
  }
10
  */
11
  function __construct ()
12
  {
13
+ $this->version = '2.0.1';
14
  $this->comment = '<!-- AVH Extended Categories version ' . $this->version . ' | http://blog.avirtualhome.com/wordpress-plugins/ -->';
15
  }
16
 
33
  {
34
  static $_instance;
35
  if ( $_instance === null ) {
36
+ $_instance = & new AVHExtendendCategoriesCore( );
37
  }
38
  return $_instance;
39
  }
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.8
7
- Stable tag: 2.0
8
 
9
  The AVH Extended Categories Widget gives you two widgets for displaying categories. One is a replacement of the default category widget to allow for greater customization. The second is a Top Categories widget.
10
 
@@ -66,6 +66,8 @@ You select to display all categories, select to Show hierarchy and select how ma
66
  None
67
 
68
  == Arbitrary section ==
 
 
69
  * Version 2.0
70
  * Updated for WordPress 2.8. Unlimited amount of Extended Categories widgets is now possible.
71
  * In WordPress 2.8 you have the options to select depth when showing hierarchy. See FAQ for more information.
4
  Tags: extended, categories, widget, top categories
5
  Requires at least: 2.3
6
  Tested up to: 2.8
7
+ Stable tag: 2.0.1
8
 
9
  The AVH Extended Categories Widget gives you two widgets for displaying categories. One is a replacement of the default category widget to allow for greater customization. The second is a Top Categories widget.
10
 
66
  None
67
 
68
  == Arbitrary section ==
69
+ * Version 2.0.1
70
+ * Reported problem with calling a class by self ()
71
  * Version 2.0
72
  * Updated for WordPress 2.8. Unlimited amount of Extended Categories widgets is now possible.
73
  * In WordPress 2.8 you have the options to select depth when showing hierarchy. See FAQ for more information.
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 = '2.0';
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 = '2.0.1';
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: Extended Category Widget
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: 2.0
7
  Author: Peter van der Does
8
  Author URI: http://blog.avirtualhome.com/
9
 
3
  Plugin Name: Extended Category Widget
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: 2.0.1
7
  Author: Peter van der Does
8
  Author URI: http://blog.avirtualhome.com/
9