Plugin Directory

Changeset 1168851


Ignore:
Timestamp:
05/27/2015 09:19:22 PM (11 years ago)
Author:
petervanderdoes
Message:

Release v4.0.1

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

Legend:

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

    r491852 r1168851  
    814814
    815815        if (isset($_POST['btnReturnParent'])) {
    816             $parentsParent = $wpdb->get_row("SELECT parent FROM $wpdb->term_taxonomy WHERE term_id = " . $_POST['hdnParentID'], ARRAY_N);
     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            ;
    817821            $parentID = $parentsParent[0];
    818822        }
  • extended-categories-widget/trunk/2.8/class/avh-ec.core.php

    r1145316 r1168851  
    2828        $catgrp = & AVH_EC_Singleton::getInstance('AVH_EC_Category_Group');
    2929
    30         $this->version = '4.0.0';
     30        $this->version = '4.0.1';
    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

    r1145316 r1168851  
    2828        $catgrp = & AVH_EC_Singleton::getInstance('AVH_EC_Category_Group');
    2929
    30         $this->version = '4.0.0';
     30        $this->version = '4.0.1';
    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

    r1145316 r1168851  
    3535        $catgrp = & AVH_EC_Singleton::getInstance('AVH_EC_Category_Group');
    3636
    37         $this->version = '4.0.0';
     37        $this->version = '4.0.1';
    3838        $this->comment = '<!-- AVH Extended Categories version ' . $this->version . ' | http://blog.avirtualhome.com/wordpress-plugins/ -->';
    3939        $this->db_options_core = 'avhec';
  • extended-categories-widget/trunk/readme.txt

    r1145316 r1168851  
    55Requires at least: 2.3
    66Tested up to: 4.2
    7 Stable tag: 4.0.0
     7Stable tag: 4.0.1
    88
    99The AVH Extended Categories Widgets gives you three widgets for displaying categories.
     
    140140
    141141== Changelog ==
     142= Version 4.0.1 =
     143* Post-Auth SQL Injection Vulnerability 
     144  Only occurs for WordPress versions lower than 3.3
     145
    142146= Version 4.0.0 =
    143147* Fix for WordPress 4.2
  • extended-categories-widget/trunk/widget_extended_categories.php

    r1145316 r1168851  
    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: 4.0.0
     6 * Version: 4.0.1
    77 * Author: Peter van der Does
    88 * Author URI: http://blog.avirtualhome.com/
Note: See TracChangeset for help on using the changeset viewer.