Plugin Directory

Changeset 794908


Ignore:
Timestamp:
10/28/2013 05:16:24 PM (12 years ago)
Author:
petervanderdoes
Message:

Release v3.8.5

Location:
extended-categories-widget/trunk
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • extended-categories-widget/trunk/2.8/class/avh-ec.core.php

    r790493 r794908  
    2828        $catgrp = & AVH_EC_Singleton::getInstance('AVH_EC_Category_Group');
    2929
    30         $this->version = '3.8.4';
     30        $this->version = '3.8.5';
    3131        $this->comment = '<!-- AVH Extended Categories version ' . $this->version . ' | http://blog.avirtualhome.com/wordpress-plugins/ -->';
    3232        $this->db_options_core = 'avhec';
  • extended-categories-widget/trunk/3.3/class/avh-ec.core.php

    r790493 r794908  
    2828        $catgrp = & AVH_EC_Singleton::getInstance('AVH_EC_Category_Group');
    2929
    30         $this->version = '3.8.4';
     30        $this->version = '3.8.5';
    3131        $this->comment = '<!-- AVH Extended Categories version ' . $this->version . ' | http://blog.avirtualhome.com/wordpress-plugins/ -->';
    3232        $this->db_options_core = 'avhec';
  • extended-categories-widget/trunk/3.6/class/avh-ec.core.php

    r790493 r794908  
    3535        $catgrp = & AVH_EC_Singleton::getInstance('AVH_EC_Category_Group');
    3636
    37         $this->version = '3.8.4';
     37        $this->version = '3.8.5';
    3838        $this->comment = '<!-- AVH Extended Categories version ' . $this->version . ' | http://blog.avirtualhome.com/wordpress-plugins/ -->';
    3939        $this->db_options_core = 'avhec';
     
    321321     * @return string HTML content only if 'echo' argument is 0.
    322322     */
    323     public function avh_wp_dropdown_categories($args = array(), $selectedonly = false)
     323    public function avh_wp_dropdown_categories($args = array())
    324324    {
    325325        $mywalker = new AVH_Walker_CategoryDropdown();
     
    427427     * @return string HTML content only if 'echo' argument is 0.
    428428     */
    429     public function avh_wp_list_categories($args = array(), $selectedonly = false)
     429    public function avh_wp_list_categories($args = array())
    430430    {
    431431        $mywalker = new AVHEC_Walker_Category();
  • extended-categories-widget/trunk/3.6/class/avh-ec.widgets.php

    r790493 r794908  
    105105        if ($style == 'list') {
    106106            echo '<ul>';
    107             $this->core->avh_wp_list_categories($cat_args, $selectedonly);
     107            $this->core->avh_wp_list_categories($cat_args);
    108108            echo '</ul>';
    109109        } else {
    110             $this->core->avh_wp_dropdown_categories($cat_args, $selectedonly);
     110            $this->core->avh_wp_dropdown_categories($cat_args);
    111111            echo '<script type=\'text/javascript\'>' . "\n";
    112112            echo '/* <![CDATA[ */' . "\n";
     
    629629            extract($args);
    630630
    631             $c = isset($instance['count']);
    632             $e = isset($instance['hide_empty']);
    633             $h = isset($instance['hierarchical']);
    634             $use_desc_for_title = isset($instance['use_desc_for_title']);
     631            $c = $instance['count'];
     632            $e = $instance['hide_empty'];
     633            $h = $instance['hierarchical'];
     634            $use_desc_for_title = $instance['use_desc_for_title'];
    635635            $s = isset($instance['sort_column']) ? $instance['sort_column'] : 'name';
    636636            $o = isset($instance['sort_order']) ? $instance['sort_order'] : 'asc';
    637             $r = isset($instance['rssfeed']) ? 'RSS' : '';
    638             $i = isset($instance['rssimage']) ? $instance['rssimage'] : '';
     637            $r = $instance['rssfeed'] ? 'RSS' : '';
     638            $i = $instance['rssimage'] ? $instance['rssimage'] : '';
    639639
    640640            if (empty($r)) {
  • extended-categories-widget/trunk/readme.txt

    r790493 r794908  
    55Requires at least: 2.3
    66Tested up to: 3.6.1
    7 Stable tag: 3.8.4
     7Stable tag: 3.8.5
    88
    99The AVH Extended Categories Widgets gives you three widgets for displaying categories.
     
    140140
    141141== Changelog ==
     142= Version 3.8.5 =
     143* Bugfix: Options of the group widgets are not obeyed.
     144
    142145= Version 3.8.4 =
    143146* Bugfix: Options of the widgets are not obeyed.
  • extended-categories-widget/trunk/widget_extended_categories.php

    r790493 r794908  
    44 * Plugin URI: http://blog.avirtualhome.com/wordpress-plugins
    55 * Description: Replacement of the category widget to allow for greater customization of the category widget.
    6  * Version: 3.8.4
     6 * Version: 3.8.5
    77 * Author: Peter van der Does
    88 * Author URI: http://blog.avirtualhome.com/
Note: See TracChangeset for help on using the changeset viewer.