Version Description
Download this release
Release Info
Developer | petervanderdoes |
Plugin | AVH Extended Categories Widgets |
Version | 3.4.2 |
Comparing to | |
See all releases |
Code changes from version 3.4.1 to 3.4.2
- 2.8/class/avh-ec.core.php +1 -1
- 2.8/class/avh-ec.widgets.php +1 -1
- readme.txt +5 -1
- widget-pre2.8.php +1 -1
- widget_extended_categories.php +1 -1
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.4.
|
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.4.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';
|
2.8/class/avh-ec.widgets.php
CHANGED
@@ -593,7 +593,7 @@ class WP_Widget_AVH_ExtendedCategories_Category_Group extends WP_Widget
|
|
593 |
if (! empty($terms)) {
|
594 |
$selected_catgroups = unserialize($instance['post_group_category']);
|
595 |
foreach ($terms as $key => $value) {
|
596 |
-
if (array_key_exists($value->term_id, $selected_catgroups)) {
|
597 |
if (! ($this->getWidgetDoneCatGroup($value->term_id))) {
|
598 |
$row = $value;
|
599 |
$group_found = TRUE;
|
593 |
if (! empty($terms)) {
|
594 |
$selected_catgroups = unserialize($instance['post_group_category']);
|
595 |
foreach ($terms as $key => $value) {
|
596 |
+
if ($selected_catgroups === FALSE || array_key_exists($value->term_id, $selected_catgroups)) {
|
597 |
if (! ($this->getWidgetDoneCatGroup($value->term_id))) {
|
598 |
$row = $value;
|
599 |
$group_found = 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.2.1
|
7 |
-
Stable tag: 3.4.
|
8 |
|
9 |
The AVH Extended Categories Widgets gives you three widgets for displaying categories.
|
10 |
== Description ==
|
@@ -134,6 +134,10 @@ Whether Widget 2 shows Movie or Music depends on the creation order of groups. I
|
|
134 |
None
|
135 |
|
136 |
== Changelog ==
|
|
|
|
|
|
|
|
|
137 |
= Version 3.4.1 =
|
138 |
* Bugfix: Problems with multiple category group widgets.
|
139 |
* Bugfix: The category group All sometimes does not contain all categories.
|
4 |
Tags: extended, categories, widget, top categories
|
5 |
Requires at least: 2.3
|
6 |
Tested up to: 3.2.1
|
7 |
+
Stable tag: 3.4.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.4.2 =
|
138 |
+
* Bugfix: Fails to display the Category Group Widget when the widget is to display any group.
|
139 |
+
* Foo line
|
140 |
+
|
141 |
= Version 3.4.1 =
|
142 |
* Bugfix: Problems with multiple category group widgets.
|
143 |
* Bugfix: The category group All sometimes does not contain all categories.
|
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.4.
|
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.4.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.4.
|
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.4.2
|
7 |
Author: Peter van der Does
|
8 |
Author URI: http://blog.avirtualhome.com/
|
9 |
|