Plugin Directory

Changeset 910513


Ignore:
Timestamp:
05/08/2014 02:16:32 PM (12 years ago)
Author:
joshlevinson
Message:

Updating to 2.0.4, fix deactivation of Woo error

Location:
woocommerce-product-faqs
Files:
3 edited
6 copied

Legend:

Unmodified
Added
Removed
  • woocommerce-product-faqs/tags/2.0.4/README.txt

    r905903 r910513  
    55Requires at least: 3.5.1
    66Tested up to: 3.9
    7 Stable tag: 2.0.3
     7Stable tag: 2.0.4
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    114114
    115115== Changelog ==
     116
     117= 2.0.4 =
     118Resolved fatal error when Woo is deactivated
     119
     120= 2.0.3 =
     121Resolved fatal error with PHP 5.2
    116122
    117123= 2.0 =
  • woocommerce-product-faqs/tags/2.0.4/public/class-woocommerce-product-faqs.php

    r905903 r910513  
    3131     * @var     string
    3232     */
    33     const VERSION = '2.0.3';
     33    const VERSION = '2.0.4';
    3434
    3535    /**
     
    116116     */
    117117    private function __construct() {
     118
     119        //deactivate if Woo's class doesn't exist
     120        if( !class_exists( 'WooCommerce' ) ) { deactivate_plugins( 'woocommerce-product-faqs/woocommerce-faqs.php' ); }
    118121
    119122        // Load plugin text domain
  • woocommerce-product-faqs/tags/2.0.4/woocommerce-faqs.php

    r905903 r910513  
    1616 * Plugin URI:        http://redactweb.com/woocommerce-faqs
    1717 * Description:       Enables your WooComerce powered site to utilize a FAQ
    18  * Version:           2.0.3
     18 * Version:           2.0.4
    1919 * Author:            Josh Levinson
    2020 * Author URI:        http://joshlevinson.me
  • woocommerce-product-faqs/trunk/README.txt

    r905903 r910513  
    55Requires at least: 3.5.1
    66Tested up to: 3.9
    7 Stable tag: 2.0.3
     7Stable tag: 2.0.4
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    114114
    115115== Changelog ==
     116
     117= 2.0.4 =
     118Resolved fatal error when Woo is deactivated
     119
     120= 2.0.3 =
     121Resolved fatal error with PHP 5.2
    116122
    117123= 2.0 =
  • woocommerce-product-faqs/trunk/public/class-woocommerce-product-faqs.php

    r905903 r910513  
    3131     * @var     string
    3232     */
    33     const VERSION = '2.0.3';
     33    const VERSION = '2.0.4';
    3434
    3535    /**
     
    116116     */
    117117    private function __construct() {
     118
     119        //deactivate if Woo's class doesn't exist
     120        if( !class_exists( 'WooCommerce' ) ) { deactivate_plugins( 'woocommerce-product-faqs/woocommerce-faqs.php' ); }
    118121
    119122        // Load plugin text domain
  • woocommerce-product-faqs/trunk/woocommerce-faqs.php

    r905903 r910513  
    1616 * Plugin URI:        http://redactweb.com/woocommerce-faqs
    1717 * Description:       Enables your WooComerce powered site to utilize a FAQ
    18  * Version:           2.0.3
     18 * Version:           2.0.4
    1919 * Author:            Josh Levinson
    2020 * Author URI:        http://joshlevinson.me
Note: See TracChangeset for help on using the changeset viewer.