Changeset 2575549
- Timestamp:
- 07/30/2021 10:30:58 PM (5 years ago)
- Location:
- fastcomments
- Files:
-
- 34 added
- 3 edited
-
tags/3.7 (added)
-
tags/3.7/.gitignore (added)
-
tags/3.7/LICENSE (added)
-
tags/3.7/README.md (added)
-
tags/3.7/README.txt (added)
-
tags/3.7/admin (added)
-
tags/3.7/admin/fastcomments-admin-setup-view.js (added)
-
tags/3.7/admin/fastcomments-admin-setup-view.php (added)
-
tags/3.7/admin/fastcomments-admin-sso-view.css (added)
-
tags/3.7/admin/fastcomments-admin-sso-view.js (added)
-
tags/3.7/admin/fastcomments-admin-sso-view.php (added)
-
tags/3.7/admin/fastcomments-admin-support-view.php (added)
-
tags/3.7/admin/fastcomments-admin-view.php (added)
-
tags/3.7/admin/fastcomments-admin.css (added)
-
tags/3.7/admin/fastcomments-admin.php (added)
-
tags/3.7/admin/images (added)
-
tags/3.7/admin/images/api.png (added)
-
tags/3.7/admin/images/crown.png (added)
-
tags/3.7/admin/images/css.png (added)
-
tags/3.7/admin/images/debugging.png (added)
-
tags/3.7/admin/images/download.png (added)
-
tags/3.7/admin/images/home.png (added)
-
tags/3.7/admin/images/logo-50.png (added)
-
tags/3.7/admin/images/logo.png (added)
-
tags/3.7/admin/images/support.png (added)
-
tags/3.7/admin/images/sync.png (added)
-
tags/3.7/core (added)
-
tags/3.7/core/FastCommentsIntegrationCore.php (added)
-
tags/3.7/core/FastCommentsWordPressIntegration.php (added)
-
tags/3.7/fastcomments-wordpress-plugin.php (added)
-
tags/3.7/public (added)
-
tags/3.7/public/fastcomments-public.php (added)
-
tags/3.7/public/fastcomments-widget-view.php (added)
-
tags/3.7/uninstall.php (added)
-
trunk/README.txt (modified) (2 diffs)
-
trunk/core/FastCommentsWordPressIntegration.php (modified) (1 diff)
-
trunk/fastcomments-wordpress-plugin.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
fastcomments/trunk/README.txt
r2575538 r2575549 4 4 Requires at least: 4.6 5 5 Tested up to: 5.8 6 Stable tag: 3. 66 Stable tag: 3.7 7 7 Requires PHP: 5.2.4 8 8 License: GPLv2 or later … … 85 85 == Changelog == 86 86 87 = 3.7 = 88 * Improvements for when upgrading from 2.1. 89 87 90 = 3.6 = 88 91 * Tested with WordPress 5.8. -
fastcomments/trunk/core/FastCommentsWordPressIntegration.php
r2575535 r2575549 34 34 public function activate() { 35 35 $this->ensure_plugin_dependencies(); 36 37 update_option('fastcomments_token', null);38 update_option('fastcomments_tenant_id', null);39 36 } 40 37 -
fastcomments/trunk/fastcomments-wordpress-plugin.php
r2575538 r2575549 4 4 Plugin URI: https://fastcomments.com 5 5 Description: Live Comments, Fast. A comment system that will delight your users and developers. 6 Version: 3. 66 Version: 3.7 7 7 Author: winrid @ FastComments 8 8 License: GPL-2.0+ … … 14 14 } 15 15 16 $FASTCOMMENTS_VERSION = 3. 6;16 $FASTCOMMENTS_VERSION = 3.7; 17 17 18 18 … … 32 32 } 33 33 34 if(get_option('fastcomments_setup')) { 34 // Comments can load as long as we have a tenant id. 35 if(get_option('fastcomments_tenant_id')) { 35 36 add_filter('comments_template', 'fc_comments_template', 100); 36 37 }
Note: See TracChangeset
for help on using the changeset viewer.