diff --git a/wp-content/plugins/extended-categories-widget/2.8/class/avh-ec.core.php b/wp-content/plugins/extended-categories-widget/2.8/class/avh-ec.core.php index 66df6cdd1c3cda26bdecb7fe2cc32c568e0673d9..cdf953beb2d8d27cb9ce5134479041216e502dcf 100644 --- a/wp-content/plugins/extended-categories-widget/2.8/class/avh-ec.core.php +++ b/wp-content/plugins/extended-categories-widget/2.8/class/avh-ec.core.php @@ -27,7 +27,7 @@ class AVH_EC_Core */ $catgrp = & AVH_EC_Singleton::getInstance('AVH_EC_Category_Group'); - $this->version = '3.6.4'; + $this->version = '3.6.7'; $this->comment = '<!-- AVH Extended Categories version ' . $this->version . ' | http://blog.avirtualhome.com/wordpress-plugins/ -->'; $this->db_options_core = 'avhec'; $this->db_options_tax_meta = 'avhec-tax_meta'; diff --git a/wp-content/plugins/extended-categories-widget/3.3/class/avh-ec.admin.php b/wp-content/plugins/extended-categories-widget/3.3/class/avh-ec.admin.php index d90b4f57c3411afab9b3f67533931df7acd9d528..ce928dbb2993011b34efcbf3ab973e9cbeb30862 100644 --- a/wp-content/plugins/extended-categories-widget/3.3/class/avh-ec.admin.php +++ b/wp-content/plugins/extended-categories-widget/3.3/class/avh-ec.admin.php @@ -1136,7 +1136,7 @@ class AVH_EC_Admin */ function filterManageCategoriesGroupColumns ($columns) { - $categories_group_columns = array ( 'name' => __('Name', 'avh-ec'), 'slug' => 'Slug', 'widget-title' => __('Widget Title', 'avh-ec'), 'description' => __('Description', 'avh-ec'), 'cat-in-group' => __('Categories in the group', 'avh-ec') ); + $categories_group_columns = array ( 'name' => __('Name', 'avh-ec'), 'slug' => __('Slug', 'avh-ec'), 'widget-title' => __('Widget Title', 'avh-ec'), 'description' => __('Description', 'avh-ec'), 'cat-in-group' => __('Categories in the group', 'avh-ec') ); return $categories_group_columns; } diff --git a/wp-content/plugins/extended-categories-widget/3.3/class/avh-ec.category-group.php b/wp-content/plugins/extended-categories-widget/3.3/class/avh-ec.category-group.php index 7ca858da6079a78c1ecf34ffbfed102e5f954816..c3c01f6948ffd0170a52ac5189733a7d1543519e 100644 --- a/wp-content/plugins/extended-categories-widget/3.3/class/avh-ec.category-group.php +++ b/wp-content/plugins/extended-categories-widget/3.3/class/avh-ec.category-group.php @@ -283,8 +283,8 @@ class AVH_EC_Category_Group */ function doDeleteWidgetTitle ($group_id) { - if (isset($this->db_options_widget_titles[$group_id])) { - unset($this->db_options_widget_titles[$group_id]); + if (isset($this->options_widget_titles[$group_id])) { + unset($this->options_widget_titles[$group_id]); } update_option($this->db_options_widget_titles, $this->options_widget_titles); } @@ -408,4 +408,4 @@ class AVH_EC_Category_Group $result = $wpdb->query($wpdb->prepare('DELETE FROM ' . $wpdb->avhec_cat_group . ' WHERE term_id=%d', $category_id)); } } -?> \ No newline at end of file +?> diff --git a/wp-content/plugins/extended-categories-widget/3.3/class/avh-ec.core.php b/wp-content/plugins/extended-categories-widget/3.3/class/avh-ec.core.php index 90b14ba12d8b1c73a5543dff8d7f99fc97a5d707..93d89b20e75a2e2fcac89dd748f4b1faca5761ff 100644 --- a/wp-content/plugins/extended-categories-widget/3.3/class/avh-ec.core.php +++ b/wp-content/plugins/extended-categories-widget/3.3/class/avh-ec.core.php @@ -27,7 +27,7 @@ class AVH_EC_Core */ $catgrp = & AVH_EC_Singleton::getInstance('AVH_EC_Category_Group'); - $this->version = '3.6.4'; + $this->version = '3.6.7'; $this->comment = '<!-- AVH Extended Categories version ' . $this->version . ' | http://blog.avirtualhome.com/wordpress-plugins/ -->'; $this->db_options_core = 'avhec'; $this->db_options_tax_meta = 'avhec-tax_meta'; diff --git a/wp-content/plugins/extended-categories-widget/lang/avh-ec-fr_FR.mo b/wp-content/plugins/extended-categories-widget/lang/avh-ec-fr_FR.mo new file mode 100644 index 0000000000000000000000000000000000000000..e28f93499ef727feb3cc22966f4cfa855064e7df Binary files /dev/null and b/wp-content/plugins/extended-categories-widget/lang/avh-ec-fr_FR.mo differ diff --git a/wp-content/plugins/extended-categories-widget/libs/avh-db.php b/wp-content/plugins/extended-categories-widget/libs/avh-db.php index 3b173ddb330be217a16d5228424059de3c604cc5..aeb8f0d55a87b6f792a86c37d57acc0266647e45 100755 --- a/wp-content/plugins/extended-categories-widget/libs/avh-db.php +++ b/wp-content/plugins/extended-categories-widget/libs/avh-db.php @@ -16,13 +16,13 @@ if (! class_exists('AVH_DB')) { public function getFieldNames ($table = '') { global $wpdb; - + $retval = wp_cache_get('field_names_' . $table, 'avhec'); if (false === $retval) { $sql = $this->_getQueryShowColumns($table); - + $result = $wpdb->get_results($sql, ARRAY_A); - + $retval = array (); foreach ($result as $row) { if (isset($row['Field'])) { @@ -31,7 +31,7 @@ if (! class_exists('AVH_DB')) { } wp_cache_set('field_names_' . $table, $retval,'avhec',3600); } - + return $retval; } @@ -59,8 +59,7 @@ if (! class_exists('AVH_DB')) { private function _getQueryShowColumns ($table = '') { global $wpdb; - return $wpdb->prepare('SHOW COLUMNS FROM ' . $table); - + return 'SHOW COLUMNS FROM '.$table; } } } diff --git a/wp-content/plugins/extended-categories-widget/readme.txt b/wp-content/plugins/extended-categories-widget/readme.txt index 9be820d6ae9a8bab2a8f290bc37dfc92c8774a98..3b12176ee9015a03eeda6a3244e4512fab17b0fc 100644 --- a/wp-content/plugins/extended-categories-widget/readme.txt +++ b/wp-content/plugins/extended-categories-widget/readme.txt @@ -3,8 +3,8 @@ Contributors: petervanderdoes Donate link: http://blog.avirtualhome.com/wordpress-plugins/ Tags: extended, categories, widget, top categories Requires at least: 2.3 -Tested up to: 3.3 -Stable tag: 3.6.4 +Tested up to: 3.5 +Stable tag: 3.6.7 The AVH Extended Categories Widgets gives you three widgets for displaying categories. == Description == @@ -65,6 +65,7 @@ Translations: * Dutch - Nederlands (nl_NL) * German - Deutsch (de_DE) * Greek (el) +* French - Français (fr_FR) * Indonesian - Bahasa Indonesia (id_ID) * Italian - Italiano (it_IT) * Russian — Русский (ru_RU) @@ -134,6 +135,17 @@ Whether Widget 2 shows Movie or Music depends on the creation order of groups. I None == Changelog == += Version 3.6.7 = +* Fix error in SQL syntax + += Version 3.6.6 = +* Missed a translatable string. +* Add French translation. +* Fix for WordPress 3.5 + += Version 3.6.5 = +* Bugfix: Can not delete category groups + = Version 3.6.4 = * Bugfix: Problem with categories not showing up when showing dropdown categories. diff --git a/wp-content/plugins/extended-categories-widget/widget_extended_categories.php b/wp-content/plugins/extended-categories-widget/widget_extended_categories.php index 771a63825e167060df3a9809c6844bb8dd3cbe72..1002eeeb4b20b75a4b6cf967830788e20b2b9877 100644 --- a/wp-content/plugins/extended-categories-widget/widget_extended_categories.php +++ b/wp-content/plugins/extended-categories-widget/widget_extended_categories.php @@ -3,7 +3,7 @@ Plugin Name: AVH Extended Categories Widgets Plugin URI: http://blog.avirtualhome.com/wordpress-plugins Description: Replacement of the category widget to allow for greater customization of the category widget. -Version: 3.6.4 +Version: 3.6.7 Author: Peter van der Does Author URI: http://blog.avirtualhome.com/