AVH Extended Categories Widgets - Version 3.3.4

Version Description

Download this release

Release Info

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

Code changes from version 3.3.3 to 3.3.4

2.8/avh-ec.client.php CHANGED
@@ -57,6 +57,8 @@ function avhextendedcategories_init ()
57
  require_once (AVHEC_ABSOLUTE_WORKING_DIR . '/class/avh-ec.admin.php');
58
  $avhec_admin = new AVH_EC_Admin();
59
  }
 
 
60
  add_action('widgets_init', 'avhextendedcategories_widgets_init');
61
 
62
  } // End avhamazon_init()
57
  require_once (AVHEC_ABSOLUTE_WORKING_DIR . '/class/avh-ec.admin.php');
58
  $avhec_admin = new AVH_EC_Admin();
59
  }
60
+ AVH_EC_Singleton::getInstance('AVH_EC_Core');
61
+
62
  add_action('widgets_init', 'avhextendedcategories_widgets_init');
63
 
64
  } // End avhamazon_init()
2.8/class/avh-ec.core.php CHANGED
@@ -25,7 +25,7 @@ class AVH_EC_Core
25
  */
26
  $catgrp = & AVH_EC_Singleton::getInstance('AVH_EC_Category_Group');
27
 
28
- $this->version = '3.3.3';
29
  $this->comment = '<!-- AVH Extended Categories version ' . $this->version . ' | http://blog.avirtualhome.com/wordpress-plugins/ -->';
30
  $this->db_options_core = 'avhec';
31
 
25
  */
26
  $catgrp = & AVH_EC_Singleton::getInstance('AVH_EC_Category_Group');
27
 
28
+ $this->version = '3.3.4';
29
  $this->comment = '<!-- AVH Extended Categories version ' . $this->version . ' | http://blog.avirtualhome.com/wordpress-plugins/ -->';
30
  $this->db_options_core = 'avhec';
31
 
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.1
7
- Stable tag: 3.3.3
8
 
9
  The AVH Extended Categories Widgets gives you three widgets for displaying categories.
10
  == Description ==
@@ -71,7 +71,7 @@ Translations:
71
  * Swedish - Svenska (sv_SE)
72
  * Turkish - Türkçe (tr)
73
 
74
- Some of the translations are incomplete. You can complete them or add your own language through Launchpad (https://translations.launchpad.net/avhextendedcategories/trunk)
75
 
76
  == Installation ==
77
 
@@ -96,7 +96,7 @@ Here is how it works: Say you have 5 top level categories and each top level has
96
  You select to display all categories, select to Show hierarchy and select how many levels you want to show, in this case Toplevel only.
97
 
98
  = I want to help and translate the plug-in =
99
- I have setup a project in Launchpad for translating the plug-in. Just visit http://bit.ly/95WyJ
100
 
101
  = Multiple Category Groups =
102
  The following is an explanation how assigning multiple groups to page/post works.
@@ -133,6 +133,9 @@ Whether Widget 2 shows Movie or Music depends on the creation order of groups. I
133
  None
134
 
135
  == Changelog ==
 
 
 
136
  = Version 3.3.3 =
137
  * RFC: Changed selecting Category groups in posts from tag-like to checkboxes.
138
  * Removed the Menu item Category groups under Posts and Pages.
4
  Tags: extended, categories, widget, top categories
5
  Requires at least: 2.3
6
  Tested up to: 3.1
7
+ Stable tag: 3.3.4
8
 
9
  The AVH Extended Categories Widgets gives you three widgets for displaying categories.
10
  == Description ==
71
  * Swedish - Svenska (sv_SE)
72
  * Turkish - Türkçe (tr)
73
 
74
+ Some of the translations are incomplete. You can complete them or add your own language through [Launchpad](https://translations.launchpad.net/avhextendedcategories/trunk)
75
 
76
  == Installation ==
77
 
96
  You select to display all categories, select to Show hierarchy and select how many levels you want to show, in this case Toplevel only.
97
 
98
  = I want to help and translate the plug-in =
99
+ I have setup a project in [Launchpad](https://translations.launchpad.net/avhextendedcategories/trunk) for translating the plug-in.
100
 
101
  = Multiple Category Groups =
102
  The following is an explanation how assigning multiple groups to page/post works.
133
  None
134
 
135
  == Changelog ==
136
+ = Version 3.3.4 =
137
+ * Bugfix: Problem with initializing the plugin.
138
+
139
  = Version 3.3.3 =
140
  * RFC: Changed selecting Category groups in posts from tag-like to checkboxes.
141
  * Removed the Menu item Category groups under Posts and Pages.
widget-pre2.8.php CHANGED
@@ -9,7 +9,7 @@ function widget_extended_categories_init ()
9
 
10
  function widget_extended_categories ($args, $number = 1)
11
  {
12
- $version = '3.3.3';
13
  // Check for version
14
  require (ABSPATH . WPINC . '/version.php');
15
  if (version_compare($wp_version, '2.5.1', '<')) {
9
 
10
  function widget_extended_categories ($args, $number = 1)
11
  {
12
+ $version = '3.3.4';
13
  // Check for version
14
  require (ABSPATH . WPINC . '/version.php');
15
  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.3.3
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.3.4
7
  Author: Peter van der Does
8
  Author URI: http://blog.avirtualhome.com/
9