Plugin Directory

Changeset 2415752


Ignore:
Timestamp:
11/10/2020 11:09:12 AM (5 years ago)
Author:
humcommerce
Message:

Fixed vulnerability issue for analytics within the plugin.

Location:
humcommerce
Files:
89 added
7 edited

Legend:

Unmodified
Added
Removed
  • humcommerce/trunk/README.txt

    r2408897 r2415752  
    55Tested up to: 5.5.1
    66Requires PHP: 5.6.0
    7 Stable tag: 3.0.8
     7Stable tag: 3.0.9
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    9393
    9494== Changelog ==
     95Ver 3.0.9 (10 Nov 2020)
     96* Fix         :  Fixed for vulnerability for analytics within the plugin.
     97
    9598Ver 3.0.8 (29 Oct 2020)
    9699* Feature     :  Notify User with Email if no errors in his site for yesterday.
  • humcommerce/trunk/analytics/includes/analytics-core-functions.php

    r2382813 r2415752  
    88 * @since       1.0.0
    99 */
     10
     11if ( ! defined( 'ABSPATH' ) ) {
     12    exit;
     13}
    1014
    1115/*
     
    187191     * Generates an absolute URL to the given path. This function ensures that the URL will be correct whether the asset
    188192     * is inside a plugin's folder or a theme's folder.
    189      *
    190      * Examples:
    191      * 1. "themes" folder
    192      *    Path: C:/xampp/htdocs/fswp/wp-content/themes/twentytwelve/analytics/assets/css/admin/common.css
    193      *    URL: http://awp:8080/wp-content/themes/twentytwelve/analytics/assets/css/admin/common.css
    194      *
    195      * 2. "plugins" folder
    196      *    Path: C:/xampp/htdocs/fswp/wp-content/plugins/rating-widget-premium/analytics/assets/css/admin/common.css
    197      *    URL: http://awp:8080/wp-content/plugins/rating-widget-premium/analytics/assets/css/admin/common.css
    198193     *
    199194     * @author CyberChimps
  • humcommerce/trunk/analytics/includes/analytics-essential-functions.php

    r2382813 r2415752  
    88 * @since       1.0.0
    99 */
     10
     11if ( ! defined( 'ABSPATH' ) ) {
     12    exit;
     13}
    1014
    1115if ( ! function_exists( 'as_normalize_path' ) ) {
  • humcommerce/trunk/analytics/includes/sdk/Exceptions/Exception.php

    r2382813 r2415752  
    11<?php
     2if ( ! defined( 'ABSPATH' ) ) {
     3    exit;
     4}
     5
    26if ( ! class_exists( 'Analytics_Exception' ) ) {
    37    /**
  • humcommerce/trunk/analytics/require.php

    r2382813 r2415752  
    77 */
    88
     9if ( ! defined( 'ABSPATH' ) ) {
     10    exit;
     11}
     12
    913// Configuration should be loaded first.
    1014require_once dirname( __FILE__ ) . '/config.php';
  • humcommerce/trunk/analytics/start.php

    r2382813 r2415752  
    1818 * @var string
    1919 */
    20 $this_sdk_version = '1.0.0';
     20$this_sdk_version = '2.4.1';
    2121
    2222require_once dirname( __FILE__ ) . '/includes/analytics-essential-functions.php';
  • humcommerce/trunk/humcommerce.php

    r2408897 r2415752  
    1616 * Plugin URI:        https://wordpress.org/plugins/humcommerce/
    1717 * Description:       HumCommerce WordPress plugin to Record, Analyze & Convert your visitors.
    18  * Version:           3.0.8
     18 * Version:           3.0.9
    1919 * Author:            HumCommerce
    2020 * Author URI:        https://www.humcommerce.com
     
    2929}
    3030
    31 define( 'HUMCOMMERCE_VERSION', '3.0.8' );
     31define( 'HUMCOMMERCE_VERSION', '3.0.9' );
    3232
    3333if ( ! defined( 'HUMCOMMERCE_HOST' ) ) {
Note: See TracChangeset for help on using the changeset viewer.