Version Description
Download this release
Release Info
Developer | petervanderdoes |
Plugin | AVH Extended Categories Widgets |
Version | 2.3.3 |
Comparing to | |
See all releases |
Code changes from version 2.3.2 to 2.3.3
- 2.8/class/avh-ec.core.php +3 -3
- 2.8/lang/avh-ec.pot +6 -2
- readme.txt +5 -2
- widget-pre2.8.php +1 -1
- widget_extended_categories.php +1 -1
2.8/class/avh-ec.core.php
CHANGED
@@ -15,7 +15,7 @@ class AVHExtendedCategoriesCore
|
|
15 |
*/
|
16 |
function __construct ()
|
17 |
{
|
18 |
-
$this->version = '2.3.
|
19 |
$this->comment = '<!-- AVH Extended Categories version ' . $this->version . ' | http://blog.avirtualhome.com/wordpress-plugins/ -->';
|
20 |
$db_version = 1;
|
21 |
$this->db_options_core = 'avhec';
|
@@ -290,13 +290,13 @@ class AVHExtendedCategoriesCore
|
|
290 |
if ( $show_option_all ) {
|
291 |
$show_option_all = apply_filters( 'list_cats', $show_option_all );
|
292 |
$selected = ('0' === strval( $r['selected'] )) ? " selected='selected'" : '';
|
293 |
-
$output .=
|
294 |
}
|
295 |
|
296 |
if ( $show_option_none ) {
|
297 |
$show_option_none = apply_filters( 'list_cats', $show_option_none );
|
298 |
$selected = ('-1' === strval( $r['selected'] )) ? " selected='selected'" : '';
|
299 |
-
$output .=
|
300 |
}
|
301 |
|
302 |
if ( $hierarchical && (! $selectonly) ) {
|
15 |
*/
|
16 |
function __construct ()
|
17 |
{
|
18 |
+
$this->version = '2.3.3';
|
19 |
$this->comment = '<!-- AVH Extended Categories version ' . $this->version . ' | http://blog.avirtualhome.com/wordpress-plugins/ -->';
|
20 |
$db_version = 1;
|
21 |
$this->db_options_core = 'avhec';
|
290 |
if ( $show_option_all ) {
|
291 |
$show_option_all = apply_filters( 'list_cats', $show_option_all );
|
292 |
$selected = ('0' === strval( $r['selected'] )) ? " selected='selected'" : '';
|
293 |
+
$output .= "\t".'<option value="0"' . $selected . '>' . $show_option_all . '</option>' . "\n";
|
294 |
}
|
295 |
|
296 |
if ( $show_option_none ) {
|
297 |
$show_option_none = apply_filters( 'list_cats', $show_option_none );
|
298 |
$selected = ('-1' === strval( $r['selected'] )) ? " selected='selected'" : '';
|
299 |
+
$output .= "\t".'<option value="-1"' . $selected . '>' . $show_option_none . '</option>' . "\n";
|
300 |
}
|
301 |
|
302 |
if ( $hierarchical && (! $selectonly) ) {
|
2.8/lang/avh-ec.pot
CHANGED
@@ -2,7 +2,7 @@ msgid ""
|
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AVH Extended Categories\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
-
"POT-Creation-Date: 2009-09-
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Peter van der Does <peter@avirtualhome.com>\n"
|
8 |
"Language-Team: \n"
|
@@ -32,7 +32,7 @@ msgstr ""
|
|
32 |
msgid "Save Changes"
|
33 |
msgstr ""
|
34 |
|
35 |
-
#: ../class/avh-ec.admin.php:
|
36 |
msgid "Settings"
|
37 |
msgstr ""
|
38 |
|
@@ -51,6 +51,10 @@ msgstr ""
|
|
51 |
msgid "An extended version of the default Categories widget."
|
52 |
msgstr ""
|
53 |
|
|
|
|
|
|
|
|
|
54 |
#: ../class/avh-ec.widgets.php:84
|
55 |
#: ../class/avh-ec.widgets.php:429
|
56 |
msgid "Select Category"
|
2 |
msgstr ""
|
3 |
"Project-Id-Version: AVH Extended Categories\n"
|
4 |
"Report-Msgid-Bugs-To: \n"
|
5 |
+
"POT-Creation-Date: 2009-09-28 08:44-0500\n"
|
6 |
"PO-Revision-Date: \n"
|
7 |
"Last-Translator: Peter van der Does <peter@avirtualhome.com>\n"
|
8 |
"Language-Team: \n"
|
32 |
msgid "Save Changes"
|
33 |
msgstr ""
|
34 |
|
35 |
+
#: ../class/avh-ec.admin.php:242
|
36 |
msgid "Settings"
|
37 |
msgstr ""
|
38 |
|
51 |
msgid "An extended version of the default Categories widget."
|
52 |
msgstr ""
|
53 |
|
54 |
+
#: ../class/avh-ec.widgets.php:25
|
55 |
+
msgid "AVH Extended Categories"
|
56 |
+
msgstr ""
|
57 |
+
|
58 |
#: ../class/avh-ec.widgets.php:84
|
59 |
#: ../class/avh-ec.widgets.php:429
|
60 |
msgid "Select Category"
|
readme.txt
CHANGED
@@ -3,8 +3,8 @@ Contributors: petervanderdoes
|
|
3 |
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: 2.
|
7 |
-
Stable tag: 2.3.
|
8 |
|
9 |
The AVH Extended Categories Widget gives you two widgets for displaying categories.
|
10 |
== Description ==
|
@@ -76,6 +76,9 @@ I have also setup a project in Launchpad for translating the plugin. Just visit
|
|
76 |
None
|
77 |
|
78 |
== Changelog ==
|
|
|
|
|
|
|
79 |
= Version 2.3.2 =
|
80 |
* Bugfix: Saving the option didn't work
|
81 |
* Added translation: Spanish - Español (es_ES)
|
3 |
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: 2.9
|
7 |
+
Stable tag: 2.3.3
|
8 |
|
9 |
The AVH Extended Categories Widget gives you two widgets for displaying categories.
|
10 |
== Description ==
|
76 |
None
|
77 |
|
78 |
== Changelog ==
|
79 |
+
= Version 2.3.3 =
|
80 |
+
* Bugfix: Validation error on dropdown categories.
|
81 |
+
|
82 |
= Version 2.3.2 =
|
83 |
* Bugfix: Saving the option didn't work
|
84 |
* Added translation: Spanish - Español (es_ES)
|
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 = '2.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 = '2.3.3';
|
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: 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: 2.3.
|
7 |
Author: Peter van der Does
|
8 |
Author URI: http://blog.avirtualhome.com/
|
9 |
|
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: 2.3.3
|
7 |
Author: Peter van der Does
|
8 |
Author URI: http://blog.avirtualhome.com/
|
9 |
|