Version Description
Download this release
Release Info
Developer | petervanderdoes |
Plugin | AVH Extended Categories Widgets |
Version | 1.5.1 |
Comparing to | |
See all releases |
Code changes from version 1.5 to 1.5.1
- readme.txt +3 -1
- widget_extended_categories.php +4 -4
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate link: http://blog.avirtualhome.com/wordpress-plugins/
|
|
4 |
Tags: extended, categories, widget
|
5 |
Requires at least: 2.3
|
6 |
Tested up to: 2.7.1
|
7 |
-
Stable tag: 1.5
|
8 |
|
9 |
Replacement of the category widget to allow for greater customization of the category widget.
|
10 |
|
@@ -41,6 +41,8 @@ I created a support site at http://forums.avirtualhome.com where you can ask que
|
|
41 |
None
|
42 |
|
43 |
== Arbitrary section ==
|
|
|
|
|
44 |
* Version 1.5
|
45 |
* RFC: Option to show RSS feed after categories
|
46 |
* Version 1.4.1
|
4 |
Tags: extended, categories, widget
|
5 |
Requires at least: 2.3
|
6 |
Tested up to: 2.7.1
|
7 |
+
Stable tag: 1.5.1
|
8 |
|
9 |
Replacement of the category widget to allow for greater customization of the category widget.
|
10 |
|
41 |
None
|
42 |
|
43 |
== Arbitrary section ==
|
44 |
+
* Version 1.5.1
|
45 |
+
* Bugfix: Compatibility issue with the plugin wp-security-scan
|
46 |
* Version 1.5
|
47 |
* RFC: Option to show RSS feed after categories
|
48 |
* Version 1.4.1
|
widget_extended_categories.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Extended Category Widget
|
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: 1.5
|
7 |
Author: Peter van der Does
|
8 |
Author URI: http://blog.avirtualhome.com/
|
9 |
|
@@ -31,9 +31,9 @@ function widget_extended_categories_init() {
|
|
31 |
}
|
32 |
|
33 |
function widget_extended_categories($args, $number = 1) {
|
34 |
-
$version = '1.5';
|
35 |
// Check for version
|
36 |
-
|
37 |
if ( version_compare($wp_version, '2.5.1', '<') ) {
|
38 |
$avh_extcat_canselectcats=false;
|
39 |
} else {
|
@@ -115,7 +115,7 @@ function widget_extended_categories_init() {
|
|
115 |
|
116 |
function widget_extended_categories_control($number = 1) {
|
117 |
// Check for version
|
118 |
-
|
119 |
if ( version_compare($wp_version, '2.5.1', '<') ) {
|
120 |
$avh_extcat_canselectcats=false;
|
121 |
} else {
|
3 |
Plugin Name: Extended Category Widget
|
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: 1.5.1
|
7 |
Author: Peter van der Does
|
8 |
Author URI: http://blog.avirtualhome.com/
|
9 |
|
31 |
}
|
32 |
|
33 |
function widget_extended_categories($args, $number = 1) {
|
34 |
+
$version = '1.5.1';
|
35 |
// Check for version
|
36 |
+
require (ABSPATH . WPINC . '/version.php');
|
37 |
if ( version_compare($wp_version, '2.5.1', '<') ) {
|
38 |
$avh_extcat_canselectcats=false;
|
39 |
} else {
|
115 |
|
116 |
function widget_extended_categories_control($number = 1) {
|
117 |
// Check for version
|
118 |
+
require (ABSPATH . WPINC . '/version.php');
|
119 |
if ( version_compare($wp_version, '2.5.1', '<') ) {
|
120 |
$avh_extcat_canselectcats=false;
|
121 |
} else {
|