Plugin Directory

Changeset 1711118


Ignore:
Timestamp:
08/09/2017 08:06:13 PM (9 years ago)
Author:
reality66
Message:

Update to version 2.0.18

Location:
cart66-cloud/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • cart66-cloud/trunk/cart66-cloud.php

    r1687253 r1711118  
    33Plugin Name: Cart66 Cloud
    44Plugin URI: http://cart66.com
    5 Description: Securely Hosted Ecommerce For WordPress
    6 Version: 2.0.17
     5Description: Secure Ecommerce For WordPress.
     6Version: 2.0.18
    77Author: Reality66
    88Author URI: http://www.reality66.com
  • cart66-cloud/trunk/includes/class-cart66-cloud.php

    r1438038 r1711118  
    2525        define( 'CC_URL',  WP_PLUGIN_URL . '/' . $plugin_dir . '/' );
    2626        define( 'CC_TEMPLATE_DEBUG_MODE', false );
    27         define( 'CC_VERSION_NUMBER', '2.0.13' );
     27        define( 'CC_VERSION_NUMBER', '2.0.18' );
    2828    }
    2929
     
    121121
    122122            if(cc_starts_with($class, 'cc_exception')) {
    123                 include_once $root . 'includes/exception-library.php';
     123                $include_file = $root . 'includes/exception-library.php';
    124124            } elseif ( cc_starts_with( $class, 'cc_admin_setting' ) ) {
    125                 include_once $root . 'includes/admin/settings/' . $file;
     125                $include_file = $root . 'includes/admin/settings/' . $file;
    126126            } elseif ( cc_starts_with( $class, 'cc_admin' ) ) {
    127                 include_once $root . 'includes/admin/' . $file;
     127                $include_file = $root . 'includes/admin/' . $file;
    128128            } elseif ( cc_starts_with( $class, 'cc_cloud' ) ) {
    129                 include_once $root . 'includes/cloud/' . $file;
     129                $include_file = $root . 'includes/cloud/' . $file;
    130130            } else {
    131                 include_once $root . 'includes/' . $file;
     131                $include_file = $root . 'includes/' . $file;
     132            }
     133
     134            /**
     135             * Make sure class exists before including file to prevent prefix
     136             * clashes from causing a fatal error
     137             */
     138            if ( file_exists( $include_file ) ) {
     139                include_once $include_file;
    132140            }
    133141
  • cart66-cloud/trunk/readme.txt

    r1687253 r1711118  
    44Tags: ecommerce, e-commerce, shopping, cart, store, cart66, download, digital, downloadable, sell, inventory, shipping, tax, donations products, sales, shopping cart, cloud, sky
    55Requires at least: 3.5
    6 Tested up to: 4.7
    7 Stable tag: 2.0.17
     6Tested up to: 4.8
     7Stable tag: 2.0.18
    88
    99License: GPLv3
     
    1616A secure and sophisticated approach to WordPress e-commerce.
    1717
    18 Cart66 is the most secure e-commerce platform for WordPress. Best of all, Cart66 handles all the security for you so you can focus entirely on your business.
    19 
    20 Cart66 is the only WordPress e-commerce option that makes your store PCI compliant.
     18Cart66 includes a WordPress plugin as well as a suite of secure connected services that go beyond what you can do with a plugin alone. With Cart66 you don't have to worry about how to secure your digital products, hooking up a business class SMTP server for sending email receipts, secure PCI compliants connections to your payment gateway, and more. Everything you need is together in one place developed and supported by a team dedicated to making your store run smoothly. We don't make you search through huge marketplaces to piece together what you need for your store. We give you everything together. Come join us. It's better together. :)
    2119
    2220Watch these videos to see how to:
     
    139137== Changelog ==
    140138
     139= 2.0.18 =
     140
     141- Update: Resolve conflicts with other plugins using the same class prefix as Cart66 Cloud.
     142
    141143= 2.0.17 =
    142144
Note: See TracChangeset for help on using the changeset viewer.