Plugin Directory

Changeset 2332358


Ignore:
Timestamp:
06/29/2020 12:54:00 PM (6 years ago)
Author:
boostools
Message:

minor bugfix

Location:
boostools/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • boostools/trunk/README.txt

    r2247543 r2332358  
    22Tags: web push notifications, on-site messages, conversion rate optimization, retargeting, social proof, nudges
    33 Requires at least: 3.0.1
    4 Tested up to: 5.2
     4Tested up to: 5.4
    55Stable tag: 4.3
    66License: GPLv2 or later
     
    5252* First Version
    5353
     54= 1.0.1 =
     55* First Version
     56
    5457
    5558== Configuration ==
  • boostools/trunk/admin/class-boostools-admin.php

    r2172679 r2332358  
    140140            $val_t = str_replace("https://", "", $val_t);
    141141           
    142             $resp = json_decode(wp_remote_retrieve_body( wp_remote_get("https://boostools.app/help/config?subdomain=".urlencode($val_t))));
    143            
     142            $resp = json_decode(wp_remote_retrieve_body( wp_remote_get("https://boostools.app/help/config?subdomain=".urlencode($val_t), array('sslverify' => FALSE))));
     143
    144144            if(!$resp){ return "Domain not found!";     }
    145145            if(isset($resp->errors) && $resp->errors ){ return "Domain not found!";     }
  • boostools/trunk/boostools.php

    r2172679 r2332358  
    1717 * Plugin URI:        https://boostools.app/wp/
    1818 * Description:       Welcome to boostools – this is very simple WordPress plugin that helps turn your website visitors into web push notification subscribers.
    19  * Version:           1.0.0
     19 * Version:           1.0.1
    2020 * Author:            Boostools Team
    2121 * License:           GPL-2.0+
     
    3131/**
    3232 * Currently plugin version.
    33  * Start at version 1.0.0 and use SemVer - https://semver.org
     33 * Start at version 1.0.1 and use SemVer - https://semver.org
    3434 * Rename this for your plugin and update it as you release new versions.
    3535 */
    36 define( 'BOOSTOOLS_VERSION', '1.0.0' );
     36define( 'BOOSTOOLS_VERSION', '1.0.1' );
    3737
    3838/**
Note: See TracChangeset for help on using the changeset viewer.