Version Description
Download this release
Release Info
Developer | petervanderdoes |
Plugin | AVH Extended Categories Widgets |
Version | 3.6.2 |
Comparing to | |
See all releases |
Code changes from version 3.6.1 to 3.6.2
- 2.8/avh-ec.client.php +1 -3
- 2.8/class/avh-ec.core.php +1 -1
- 3.3/class/avh-ec.core.php +1 -1
- readme.txt +4 -1
- widget-pre2.8.php +1 -1
- widget_extended_categories.php +1 -1
2.8/avh-ec.client.php
CHANGED
@@ -45,8 +45,6 @@ class AVH_EC_Singleton
|
|
45 |
*/
|
46 |
require_once (AVHEC_ABSOLUTE_WORKING_DIR . '/helpers/avh-forms.php');
|
47 |
require_once (AVHEC_ABSOLUTE_WORKING_DIR . '/class/avh-ec.widgets.php');
|
48 |
-
require_once (AVHEC_ABSOLUTE_WORKING_DIR . '/libs/avh-common.php');
|
49 |
-
require_once (AVHEC_ABSOLUTE_WORKING_DIR . '/libs/avh-db.php');
|
50 |
|
51 |
/**
|
52 |
* Initialize the plugin
|
@@ -60,7 +58,7 @@ function avhextendedcategories_init ()
|
|
60 |
$avhec_admin = new AVH_EC_Admin();
|
61 |
}
|
62 |
AVH_EC_Singleton::getInstance('AVH_EC_Core');
|
63 |
-
|
64 |
add_action('widgets_init', 'avhextendedcategories_widgets_init');
|
65 |
|
66 |
} // End avhamazon_init()
|
45 |
*/
|
46 |
require_once (AVHEC_ABSOLUTE_WORKING_DIR . '/helpers/avh-forms.php');
|
47 |
require_once (AVHEC_ABSOLUTE_WORKING_DIR . '/class/avh-ec.widgets.php');
|
|
|
|
|
48 |
|
49 |
/**
|
50 |
* Initialize the plugin
|
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
@@ -27,7 +27,7 @@ class AVH_EC_Core
|
|
27 |
*/
|
28 |
$catgrp = & AVH_EC_Singleton::getInstance('AVH_EC_Category_Group');
|
29 |
|
30 |
-
$this->version = '3.6.
|
31 |
$this->comment = '<!-- AVH Extended Categories version ' . $this->version . ' | http://blog.avirtualhome.com/wordpress-plugins/ -->';
|
32 |
$this->db_options_core = 'avhec';
|
33 |
$this->db_options_tax_meta = 'avhec-tax_meta';
|
27 |
*/
|
28 |
$catgrp = & AVH_EC_Singleton::getInstance('AVH_EC_Category_Group');
|
29 |
|
30 |
+
$this->version = '3.6.2';
|
31 |
$this->comment = '<!-- AVH Extended Categories version ' . $this->version . ' | http://blog.avirtualhome.com/wordpress-plugins/ -->';
|
32 |
$this->db_options_core = 'avhec';
|
33 |
$this->db_options_tax_meta = 'avhec-tax_meta';
|
3.3/class/avh-ec.core.php
CHANGED
@@ -27,7 +27,7 @@ class AVH_EC_Core
|
|
27 |
*/
|
28 |
$catgrp = & AVH_EC_Singleton::getInstance('AVH_EC_Category_Group');
|
29 |
|
30 |
-
$this->version = '3.6.
|
31 |
$this->comment = '<!-- AVH Extended Categories version ' . $this->version . ' | http://blog.avirtualhome.com/wordpress-plugins/ -->';
|
32 |
$this->db_options_core = 'avhec';
|
33 |
$this->db_options_tax_meta = 'avhec-tax_meta';
|
27 |
*/
|
28 |
$catgrp = & AVH_EC_Singleton::getInstance('AVH_EC_Category_Group');
|
29 |
|
30 |
+
$this->version = '3.6.2';
|
31 |
$this->comment = '<!-- AVH Extended Categories version ' . $this->version . ' | http://blog.avirtualhome.com/wordpress-plugins/ -->';
|
32 |
$this->db_options_core = 'avhec';
|
33 |
$this->db_options_tax_meta = 'avhec-tax_meta';
|
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.3
|
7 |
-
Stable tag: 3.6.
|
8 |
|
9 |
The AVH Extended Categories Widgets gives you three widgets for displaying categories.
|
10 |
== Description ==
|
@@ -134,6 +134,9 @@ Whether Widget 2 shows Movie or Music depends on the creation order of groups. I
|
|
134 |
None
|
135 |
|
136 |
== Changelog ==
|
|
|
|
|
|
|
137 |
= Version 3.6.1 =
|
138 |
* Bugfix: Problem with a flat display of categories.
|
139 |
* Bugfix: Problem loading the plugin on WordPress 3.2.x
|
4 |
Tags: extended, categories, widget, top categories
|
5 |
Requires at least: 2.3
|
6 |
Tested up to: 3.3
|
7 |
+
Stable tag: 3.6.2
|
8 |
|
9 |
The AVH Extended Categories Widgets gives you three widgets for displaying categories.
|
10 |
== Description ==
|
134 |
None
|
135 |
|
136 |
== Changelog ==
|
137 |
+
= Version 3.6.2 =
|
138 |
+
* Bugfix: Another problem related to WordPress prior 3.3
|
139 |
+
|
140 |
= Version 3.6.1 =
|
141 |
* Bugfix: Problem with a flat display of categories.
|
142 |
* Bugfix: Problem loading the plugin on WordPress 3.2.x
|
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.6.
|
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.6.2';
|
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.6.
|
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.6.2
|
7 |
Author: Peter van der Does
|
8 |
Author URI: http://blog.avirtualhome.com/
|
9 |
|