Plugin Directory

Changeset 2186529


Ignore:
Timestamp:
11/05/2019 09:47:43 PM (5 years ago)
Author:
lucastidio
Message:

fix missing nonce variable

Location:
tidio-live-chat/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • tidio-live-chat/trunk/media/js/options.js

    r2186087 r2186529  
    77        email: '',
    88        init: function () {
    9             // check if page is already integrated; if so show after install screen
    10             if ($('a[href="admin.php?page=tidio-chat"]').length === 0) {
    11                 $.post(ajaxurl, {
    12                         'action': 'get_private_key',
    13                         '_wpnonce': nonce,
    14                     },
    15                     function (response) {
    16                         if (response === 'error') {
    17                             // load through ajax url
    18                             TidioChatWP.accessThroughXHR(redirect);
    19                             return false;
    20                         }
    21                         $('#after-install-text').show();
    22                         TidioChatWP.setRedirectLink(response);
    23                     });
    24                 return;
    25             }
    269            this.error = $('.error');
    2710            this.form = $('#tidio-start');
  • tidio-live-chat/trunk/readme.txt

    r2186087 r2186529  
    44Requires at least: 3.0
    55Tested up to: 5.2
    6 Stable tag: 4.2.0
     6Stable tag: 4.2.1
    77License: GPLv2
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    122122== Changelog ==
    123123
     124= 4.2.1 =
     125* Fix missing nonce variable
     126
    124127= 4.2.0 =
    125128* Update menu icon
  • tidio-live-chat/trunk/tidio-elements.php

    r2186087 r2186529  
    55 * Plugin URI: http://www.tidio.com
    66 * Description: Tidio Live Chat - live chat boosted with chatbots for your online business. Integrates with your website in less than 20 seconds.
    7  * Version: 4.2.0
     7 * Version: 4.2.1
    88 * Author: Tidio Ltd.
    99 * Author URI: http://www.tidio.com
    1010 * License: GPL2
    1111 */
    12 define('TIDIOCHAT_VERSION', '4.2.0');
     12define('TIDIOCHAT_VERSION', '4.2.1');
    1313define('AFFILIATE_CONFIG_FILE_PATH', get_template_directory().'/tidio_affiliate_ref_id.txt');
    1414
Note: See TracChangeset for help on using the changeset viewer.