Version Description
Download this release
Release Info
Developer | petervanderdoes |
Plugin | AVH Extended Categories Widgets |
Version | 3.3.1 |
Comparing to | |
See all releases |
Code changes from version 3.3 to 3.3.1
- 2.8/class/avh-ec.core.php +1 -1
- 2.8/class/avh-ec.widgets.php +1 -1
- readme.txt +4 -1
- widget-pre2.8.php +1 -1
- widget_extended_categories.php +1 -1
2.8/class/avh-ec.core.php
CHANGED
@@ -24,7 +24,7 @@ class AVH_EC_Core
|
|
24 |
*/
|
25 |
$catgrp = & AVH_EC_Singleton::getInstance( 'AVH_EC_Category_Group' );
|
26 |
|
27 |
-
$this->version = '3.3';
|
28 |
$this->comment = '<!-- AVH Extended Categories version ' . $this->version . ' | http://blog.avirtualhome.com/wordpress-plugins/ -->';
|
29 |
$this->db_options_core = 'avhec';
|
30 |
|
24 |
*/
|
25 |
$catgrp = & AVH_EC_Singleton::getInstance( 'AVH_EC_Category_Group' );
|
26 |
|
27 |
+
$this->version = '3.3.1';
|
28 |
$this->comment = '<!-- AVH Extended Categories version ' . $this->version . ' | http://blog.avirtualhome.com/wordpress-plugins/ -->';
|
29 |
$this->db_options_core = 'avhec';
|
30 |
|
2.8/class/avh-ec.widgets.php
CHANGED
@@ -832,7 +832,7 @@ class WP_Widget_AVH_ExtendedCategories_Category_Group extends WP_Widget
|
|
832 |
|
833 |
function getWidgetDoneCatGroup($id) {
|
834 |
$catgrp = & AVH_EC_Singleton::getInstance( 'AVH_EC_Category_Group' );
|
835 |
-
if (
|
836 |
return TRUE;
|
837 |
}
|
838 |
$catgrp->widget_done_catgroup[$id]=TRUE;
|
832 |
|
833 |
function getWidgetDoneCatGroup($id) {
|
834 |
$catgrp = & AVH_EC_Singleton::getInstance( 'AVH_EC_Category_Group' );
|
835 |
+
if (is_array($catgrp->widget_done_catgroup) && array_key_exists($id, $catgrp->widget_done_catgroup)) {
|
836 |
return TRUE;
|
837 |
}
|
838 |
$catgrp->widget_done_catgroup[$id]=TRUE;
|
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.0.5
|
7 |
-
Stable tag: 3.3
|
8 |
|
9 |
The AVH Extended Categories Widgets gives you three widgets for displaying categories.
|
10 |
== Description ==
|
@@ -130,6 +130,9 @@ Whether Widget 2 shows Movie or Music depends on the creation order of groups. I
|
|
130 |
None
|
131 |
|
132 |
== Changelog ==
|
|
|
|
|
|
|
133 |
= Version 3.3 =
|
134 |
* Ability to assign multiple Category Groups to a post/page.
|
135 |
* A Category Group can be assigned to 'special' pages. The 'special' pages are: Home, Category archive, Tag archive, Daily/Monthly/Yearly archive, Author archive, Search results page.
|
4 |
Tags: extended, categories, widget, top categories
|
5 |
Requires at least: 2.3
|
6 |
Tested up to: 3.0.5
|
7 |
+
Stable tag: 3.3.1
|
8 |
|
9 |
The AVH Extended Categories Widgets gives you three widgets for displaying categories.
|
10 |
== Description ==
|
130 |
None
|
131 |
|
132 |
== Changelog ==
|
133 |
+
= Version 3.3.1 =
|
134 |
+
* Bugfix: A PHP warning would show up when using multiple Category Group widgets.
|
135 |
+
|
136 |
= Version 3.3 =
|
137 |
* Ability to assign multiple Category Groups to a post/page.
|
138 |
* A Category Group can be assigned to 'special' pages. The 'special' pages are: Home, Category archive, Tag archive, Daily/Monthly/Yearly archive, Author archive, Search results page.
|
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.3';
|
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.3.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: 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
|
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.1
|
7 |
Author: Peter van der Does
|
8 |
Author URI: http://blog.avirtualhome.com/
|
9 |
|