Version Description
Download this release
Release Info
Developer | petervanderdoes |
Plugin | AVH Extended Categories Widgets |
Version | 4.0.1 |
Comparing to | |
See all releases |
Code changes from version 4.0.0 to 4.0.1
- 2.8/class/avh-ec.admin.php +5 -1
- 2.8/class/avh-ec.core.php +1 -1
- 3.3/class/avh-ec.core.php +1 -1
- 3.6/class/avh-ec.core.php +1 -1
- readme.txt +5 -1
- widget_extended_categories.php +1 -1
2.8/class/avh-ec.admin.php
CHANGED
@@ -813,7 +813,11 @@ class AVH_EC_Admin
|
|
813 |
}
|
814 |
|
815 |
if (isset($_POST['btnReturnParent'])) {
|
816 |
-
|
|
|
|
|
|
|
|
|
817 |
$parentID = $parentsParent[0];
|
818 |
}
|
819 |
|
813 |
}
|
814 |
|
815 |
if (isset($_POST['btnReturnParent'])) {
|
816 |
+
$parentsParent = $wpdb->get_row(
|
817 |
+
$wpdb->prepare('SELECT parent FROM $wpdb->term_taxonomy WHERE term_id = %d', $_POST['hdnParentID']),
|
818 |
+
ARRAY_N
|
819 |
+
)
|
820 |
+
;
|
821 |
$parentID = $parentsParent[0];
|
822 |
}
|
823 |
|
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 = '4.0.
|
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 = '4.0.1';
|
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 = '4.0.
|
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 = '4.0.1';
|
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.6/class/avh-ec.core.php
CHANGED
@@ -34,7 +34,7 @@ class AVH_EC_Core
|
|
34 |
*/
|
35 |
$catgrp = & AVH_EC_Singleton::getInstance('AVH_EC_Category_Group');
|
36 |
|
37 |
-
$this->version = '4.0.
|
38 |
$this->comment = '<!-- AVH Extended Categories version ' . $this->version . ' | http://blog.avirtualhome.com/wordpress-plugins/ -->';
|
39 |
$this->db_options_core = 'avhec';
|
40 |
$this->db_options_tax_meta = 'avhec-tax_meta';
|
34 |
*/
|
35 |
$catgrp = & AVH_EC_Singleton::getInstance('AVH_EC_Category_Group');
|
36 |
|
37 |
+
$this->version = '4.0.1';
|
38 |
$this->comment = '<!-- AVH Extended Categories version ' . $this->version . ' | http://blog.avirtualhome.com/wordpress-plugins/ -->';
|
39 |
$this->db_options_core = 'avhec';
|
40 |
$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: 4.2
|
7 |
-
Stable tag: 4.0.
|
8 |
|
9 |
The AVH Extended Categories Widgets gives you three widgets for displaying categories.
|
10 |
== Description ==
|
@@ -139,6 +139,10 @@ Whether Widget 2 shows Movie or Music depends on the creation order of groups. I
|
|
139 |
None
|
140 |
|
141 |
== Changelog ==
|
|
|
|
|
|
|
|
|
142 |
= Version 4.0.0 =
|
143 |
* Fix for WordPress 4.2
|
144 |
Categories are not displayed anymore.
|
4 |
Tags: extended, categories, widget, top categories
|
5 |
Requires at least: 2.3
|
6 |
Tested up to: 4.2
|
7 |
+
Stable tag: 4.0.1
|
8 |
|
9 |
The AVH Extended Categories Widgets gives you three widgets for displaying categories.
|
10 |
== Description ==
|
139 |
None
|
140 |
|
141 |
== Changelog ==
|
142 |
+
= Version 4.0.1 =
|
143 |
+
* Post-Auth SQL Injection Vulnerability
|
144 |
+
Only occurs for WordPress versions lower than 3.3
|
145 |
+
|
146 |
= Version 4.0.0 =
|
147 |
* Fix for WordPress 4.2
|
148 |
Categories are not displayed anymore.
|
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: 4.0.
|
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: 4.0.1
|
7 |
* Author: Peter van der Does
|
8 |
* Author URI: http://blog.avirtualhome.com/
|
9 |
*
|