Plugin Directory

Changeset 2575549


Ignore:
Timestamp:
07/30/2021 10:30:58 PM (5 years ago)
Author:
winrid
Message:

3.7 - Upgrading improvements

Location:
fastcomments
Files:
34 added
3 edited

Legend:

Unmodified
Added
Removed
  • fastcomments/trunk/README.txt

    r2575538 r2575549  
    44Requires at least: 4.6
    55Tested up to: 5.8
    6 Stable tag: 3.6
     6Stable tag: 3.7
    77Requires PHP: 5.2.4
    88License: GPLv2 or later
     
    8585== Changelog ==
    8686
     87= 3.7 =
     88* Improvements for when upgrading from 2.1.
     89
    8790= 3.6 =
    8891* Tested with WordPress 5.8.
  • fastcomments/trunk/core/FastCommentsWordPressIntegration.php

    r2575535 r2575549  
    3434    public function activate() {
    3535        $this->ensure_plugin_dependencies();
    36 
    37         update_option('fastcomments_token', null);
    38         update_option('fastcomments_tenant_id', null);
    3936    }
    4037
  • fastcomments/trunk/fastcomments-wordpress-plugin.php

    r2575538 r2575549  
    44Plugin URI: https://fastcomments.com
    55Description: Live Comments, Fast. A comment system that will delight your users and developers.
    6 Version: 3.6
     6Version: 3.7
    77Author: winrid @ FastComments
    88License: GPL-2.0+
     
    1414}
    1515
    16 $FASTCOMMENTS_VERSION = 3.6;
     16$FASTCOMMENTS_VERSION = 3.7;
    1717
    1818
     
    3232}
    3333
    34 if(get_option('fastcomments_setup')) {
     34// Comments can load as long as we have a tenant id.
     35if(get_option('fastcomments_tenant_id')) {
    3536    add_filter('comments_template', 'fc_comments_template', 100);
    3637}
Note: See TracChangeset for help on using the changeset viewer.