Plugin Directory

Changeset 2753954


Ignore:
Timestamp:
07/09/2022 01:27:19 AM (4 years ago)
Author:
earnware
Message:

Release a small patch for a ew_hasrole shortcode bug that occurs when tracking per session is enabled.

Location:
earnware-connect/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • earnware-connect/trunk/README.txt

    r2656861 r2753954  
    2828== Changelog ==
    2929
     30= 1.0.69 =
     31* Release a small patch for a ew_hasrole shortcode bug that occurs when tracking per session is enabled.
     32
    3033= 1.0.68 =
    3134* Changed stylesheet endpoint and added classes to initial row for element plugin support
  • earnware-connect/trunk/public/js/earnware-lib.js

    r2114517 r2753954  
    100100    setRoles: function(roles) {
    101101        if (this.storage)
    102             localStorage.setItem('roles', roles);
     102            this.storage.setItem('roles', roles);
    103103    },
    104104    hasRole: function(role, callback, softEnforcement) {
  • earnware-connect/trunk/wp-ew.php

    r2656861 r2753954  
    1717 * Plugin URI:        https://www.earnware.com/wordpress/plugins/earnware-connect
    1818 * Description:       A plugin to connect any wordpress site to the Earnware Dashboard.
    19  * Version:           1.0.68
     19 * Version:           1.0.69
    2020 * Author:            Earnware Corporation
    2121 * Author URI:        https://earnware.com/about/
     
    3131}
    3232
    33 define( 'PLUGIN_NAME_VERSION', '1.0.68' );
     33define( 'PLUGIN_NAME_VERSION', '1.0.69' );
    3434
    3535/**
Note: See TracChangeset for help on using the changeset viewer.