Changeset 1168851
- Timestamp:
- 05/27/2015 09:19:22 PM (11 years ago)
- Location:
- extended-categories-widget/trunk
- Files:
-
- 6 edited
-
2.8/class/avh-ec.admin.php (modified) (1 diff)
-
2.8/class/avh-ec.core.php (modified) (1 diff)
-
3.3/class/avh-ec.core.php (modified) (1 diff)
-
3.6/class/avh-ec.core.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
widget_extended_categories.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
extended-categories-widget/trunk/2.8/class/avh-ec.admin.php
r491852 r1168851 814 814 815 815 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 ; 817 821 $parentID = $parentsParent[0]; 818 822 } -
extended-categories-widget/trunk/2.8/class/avh-ec.core.php
r1145316 r1168851 28 28 $catgrp = & AVH_EC_Singleton::getInstance('AVH_EC_Category_Group'); 29 29 30 $this->version = '4.0. 0';30 $this->version = '4.0.1'; 31 31 $this->comment = '<!-- AVH Extended Categories version ' . $this->version . ' | http://blog.avirtualhome.com/wordpress-plugins/ -->'; 32 32 $this->db_options_core = 'avhec'; -
extended-categories-widget/trunk/3.3/class/avh-ec.core.php
r1145316 r1168851 28 28 $catgrp = & AVH_EC_Singleton::getInstance('AVH_EC_Category_Group'); 29 29 30 $this->version = '4.0. 0';30 $this->version = '4.0.1'; 31 31 $this->comment = '<!-- AVH Extended Categories version ' . $this->version . ' | http://blog.avirtualhome.com/wordpress-plugins/ -->'; 32 32 $this->db_options_core = 'avhec'; -
extended-categories-widget/trunk/3.6/class/avh-ec.core.php
r1145316 r1168851 35 35 $catgrp = & AVH_EC_Singleton::getInstance('AVH_EC_Category_Group'); 36 36 37 $this->version = '4.0. 0';37 $this->version = '4.0.1'; 38 38 $this->comment = '<!-- AVH Extended Categories version ' . $this->version . ' | http://blog.avirtualhome.com/wordpress-plugins/ -->'; 39 39 $this->db_options_core = 'avhec'; -
extended-categories-widget/trunk/readme.txt
r1145316 r1168851 5 5 Requires at least: 2.3 6 6 Tested up to: 4.2 7 Stable tag: 4.0. 07 Stable tag: 4.0.1 8 8 9 9 The AVH Extended Categories Widgets gives you three widgets for displaying categories. … … 140 140 141 141 == Changelog == 142 = Version 4.0.1 = 143 * Post-Auth SQL Injection Vulnerability 144 Only occurs for WordPress versions lower than 3.3 145 142 146 = Version 4.0.0 = 143 147 * Fix for WordPress 4.2 -
extended-categories-widget/trunk/widget_extended_categories.php
r1145316 r1168851 4 4 * Plugin URI: http://blog.avirtualhome.com/wordpress-plugins 5 5 * Description: Replacement of the category widget to allow for greater customization of the category widget. 6 * Version: 4.0. 06 * Version: 4.0.1 7 7 * Author: Peter van der Does 8 8 * Author URI: http://blog.avirtualhome.com/
Note: See TracChangeset
for help on using the changeset viewer.