Plugin Directory

Changeset 2384504


Ignore:
Timestamp:
09/18/2020 02:15:24 PM (6 years ago)
Author:
fmixell
Message:

Preparing for 1.7.5 release

Location:
yikes-inc-easy-custom-woocommerce-product-tabs/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • yikes-inc-easy-custom-woocommerce-product-tabs/trunk/admin/class.settings.php

    r2365870 r2384504  
    4444        $content = function_exists( 'shortcode_unautop' ) ? shortcode_unautop( $content ) : $content;
    4545        $content = function_exists( 'prepend_attachment' ) ? prepend_attachment( $content ) : $content;
    46         $content = function_exists( 'wp_make_content_images_responsive' ) ? wp_make_content_images_responsive( $content ) : $content;
     46        $content = function_exists( 'wp_filter_content_tags' ) ? wp_filter_content_tags( $content ) : $content;
    4747        $content = function_exists( 'do_shortcode' ) ? do_shortcode( $content ) : $content;
    4848   
  • yikes-inc-easy-custom-woocommerce-product-tabs/trunk/readme.txt

    r2378815 r2384504  
    55Requires at least: 3.8
    66Tested up to: 5.5
    7 Stable tag: 1.7.4
     7Stable tag: 1.7.5
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    7575
    7676== Changelog ==
     77
     78= 1.7.5 – September 18th, 2020 =
     79* Swapping (deprecated) wp_make_content_images_responsive for wp_filter_content_tags in our content filter. Thanks @stephencd!
    7780
    7881= 1.7.4 – September 12th, 2020 =
  • yikes-inc-easy-custom-woocommerce-product-tabs/trunk/yikes-inc-easy-custom-woocommerce-product-tabs.php

    r2378815 r2384504  
    66 * Author: YIKES, Inc.
    77 * Author URI: http://www.yikesinc.com
    8  * Version: 1.7.4
     8 * Version: 1.7.5
    99 * Text Domain: yikes-inc-easy-custom-woocommerce-product-tabs
    1010 * Domain Path: languages/
     
    106106         */
    107107        if ( ! defined( 'YIKES_Custom_Product_Tabs_Version' ) ) {
    108             define( 'YIKES_Custom_Product_Tabs_Version', '1.7.4' );
     108            define( 'YIKES_Custom_Product_Tabs_Version', '1.7.5' );
    109109        }
    110110
Note: See TracChangeset for help on using the changeset viewer.