Plugin Directory

Changeset 3347220


Ignore:
Timestamp:
08/19/2025 07:51:51 PM (7 months ago)
Author:
provesource
Message:

Change state tracking to only work if apiKey is present

Location:
provesource
Files:
22 added
2 edited

Legend:

Unmodified
Added
Removed
  • provesource/trunk/provesrc.php

    r3347171 r3347220  
    88 * Plugin Name: ProveSource
    99 * Description: ProveSource is a social proof marketing platform that works with your Wordpress and WooCommerce websites out of the box
    10  * Version: 3.0.6
     10 * Version: 3.0.7
    1111 * Author: ProveSource LTD
    1212 * Author URI: https://provesrc.com
     
    3232    public static function version()
    3333    {
    34         return '3.0.6';
     34        return '3.0.7';
    3535    }
    3636
     
    201201        return;
    202202    }
     203    $apiKey = provesrc_get_api_key();
     204    if (!$apiKey) {
     205        return;
     206    }
    203207    $data = array(
     208        'email' => get_option('admin_email'),
    204209        'siteUrl' => get_site_url(),
    205210        'siteName' => get_bloginfo('name'),
     
    216221        return;
    217222    }
     223    $apiKey = provesrc_get_api_key();
     224    if (!$apiKey) {
     225        return;
     226    }
    218227    $data = array(
     228        'email' => get_option('admin_email'),
    219229        'siteUrl' => get_site_url(),
    220230        'siteName' => get_bloginfo('name'),
     
    231241        return;
    232242    }
     243    $apiKey = provesrc_get_api_key();
     244    if (!$apiKey) {
     245        return;
     246    }
    233247    $data = array(
     248        'email' => get_option('admin_email'),
    234249        'siteUrl' => get_site_url(),
    235250        'siteName' => get_bloginfo('name'),
  • provesource/trunk/readme.txt

    r3347171 r3347220  
    66Requires at least: 3.1.0
    77Tested up to: 6.8
    8 Stable tag: 3.0.6
     8Stable tag: 3.0.7
    99License: GPL-3.0-or-later
    1010License URI: https://www.gnu.org/licenses/gpl-3.0.html
Note: See TracChangeset for help on using the changeset viewer.