Plugin Directory

Changeset 1431237


Ignore:
Timestamp:
06/06/2016 08:36:50 AM (10 years ago)
Author:
ghostmonitor
Message:

AUTOMATED COMMIT, PLUGIN VERSION: 1.6.5

Location:
ghostmonitor
Files:
76 added
6 edited

Legend:

Unmodified
Added
Removed
  • ghostmonitor/trunk/config.json

    r1428235 r1431237  
    33    "trackingUrl": "https://tracking.ghostmonitor.com",
    44    "cdnUrl": "https://cdn.ghostmonitor.com",
    5     "version": "v1.6.4",
     5    "version": "v1.6.5",
    66    "logentriesToken": "d3695c56-67af-4c86-8c7d-26c6c252987b",
    77    "env": "production"
  • ghostmonitor/trunk/includes/class-wc-ghostmonitor.php

    r1428235 r1431237  
    284284    public function send_conversion( $order_id ) {
    285285        $gm_session_data = get_post_meta( $order_id, '_gm_params', true );
    286         if ( $gm_session_data === false ) {
     286        if ( ! $gm_session_data ) {
    287287            return false;
    288288        }
     
    393393        $cart_items[] = $shipping;
    394394
    395         $return_url = add_query_arg( 'gm_cart', $session_id, WC()->cart->get_checkout_url() );
     395        $return_url = add_query_arg( 'gm_cart', $session_id, wc_get_checkout_url() );
    396396        $cart_data  = array(
    397397            'returnUrl'  => $return_url,
  • ghostmonitor/trunk/includes/ghostmonitor_helper/vendor/autoload.php

    r1428235 r1431237  
    55require_once __DIR__ . '/composer' . '/autoload_real.php';
    66
    7 return ComposerAutoloaderInit58205a96aeb2898a67a2ca6b783e0606::getLoader();
     7return ComposerAutoloaderInit3302c407c280cfceec87ea747b8520af::getLoader();
  • ghostmonitor/trunk/includes/ghostmonitor_helper/vendor/composer/autoload_real.php

    r1428235 r1431237  
    33// autoload_real.php @generated by Composer
    44
    5 class ComposerAutoloaderInit58205a96aeb2898a67a2ca6b783e0606
     5class ComposerAutoloaderInit3302c407c280cfceec87ea747b8520af
    66{
    77    private static $loader;
     
    2020        }
    2121
    22         spl_autoload_register(array('ComposerAutoloaderInit58205a96aeb2898a67a2ca6b783e0606', 'loadClassLoader'), true, true);
     22        spl_autoload_register(array('ComposerAutoloaderInit3302c407c280cfceec87ea747b8520af', 'loadClassLoader'), true, true);
    2323        self::$loader = $loader = new \Composer\Autoload\ClassLoader();
    24         spl_autoload_unregister(array('ComposerAutoloaderInit58205a96aeb2898a67a2ca6b783e0606', 'loadClassLoader'));
     24        spl_autoload_unregister(array('ComposerAutoloaderInit3302c407c280cfceec87ea747b8520af', 'loadClassLoader'));
    2525
    2626        $map = require __DIR__ . '/autoload_namespaces.php';
     
    4343        $includeFiles = require __DIR__ . '/autoload_files.php';
    4444        foreach ($includeFiles as $fileIdentifier => $file) {
    45             composerRequire58205a96aeb2898a67a2ca6b783e0606($fileIdentifier, $file);
     45            composerRequire3302c407c280cfceec87ea747b8520af($fileIdentifier, $file);
    4646        }
    4747
     
    5050}
    5151
    52 function composerRequire58205a96aeb2898a67a2ca6b783e0606($fileIdentifier, $file)
     52function composerRequire3302c407c280cfceec87ea747b8520af($fileIdentifier, $file)
    5353{
    5454    if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
  • ghostmonitor/trunk/readme.txt

    r1428235 r1431237  
    44Requires at least: 3.9
    55Tested up to: 4.5
    6 Stable tag: 1.6.4
     6Stable tag: 1.6.5
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
  • ghostmonitor/trunk/woocommerce-ghostmonitor.php

    r1428235 r1431237  
    66 * Author: Ghostmonitor INC
    77 * Author URI: http://www.ghostmonitor.com
    8  * Version: v1.6.4
     8 * Version: v1.6.5
    99 */
    1010
     
    4444        global $wp_version;
    4545
    46         $version = 'v1.6.4';
     46        $version = 'v1.6.5';
    4747
    4848        $discount_enabled = get_option( 'woocommerce_enable_coupons' ) === 'yes' ? 'true' : 'false';
Note: See TracChangeset for help on using the changeset viewer.