Changeset 2575553
- Timestamp:
- 07/30/2021 10:43:46 PM (5 years ago)
- Location:
- fastcomments
- Files:
-
- 34 added
- 4 edited
-
tags/3.8 (added)
-
tags/3.8/.gitignore (added)
-
tags/3.8/LICENSE (added)
-
tags/3.8/README.md (added)
-
tags/3.8/README.txt (added)
-
tags/3.8/admin (added)
-
tags/3.8/admin/fastcomments-admin-setup-view.js (added)
-
tags/3.8/admin/fastcomments-admin-setup-view.php (added)
-
tags/3.8/admin/fastcomments-admin-sso-view.css (added)
-
tags/3.8/admin/fastcomments-admin-sso-view.js (added)
-
tags/3.8/admin/fastcomments-admin-sso-view.php (added)
-
tags/3.8/admin/fastcomments-admin-support-view.php (added)
-
tags/3.8/admin/fastcomments-admin-view.php (added)
-
tags/3.8/admin/fastcomments-admin.css (added)
-
tags/3.8/admin/fastcomments-admin.php (added)
-
tags/3.8/admin/images (added)
-
tags/3.8/admin/images/api.png (added)
-
tags/3.8/admin/images/crown.png (added)
-
tags/3.8/admin/images/css.png (added)
-
tags/3.8/admin/images/debugging.png (added)
-
tags/3.8/admin/images/download.png (added)
-
tags/3.8/admin/images/home.png (added)
-
tags/3.8/admin/images/logo-50.png (added)
-
tags/3.8/admin/images/logo.png (added)
-
tags/3.8/admin/images/support.png (added)
-
tags/3.8/admin/images/sync.png (added)
-
tags/3.8/core (added)
-
tags/3.8/core/FastCommentsIntegrationCore.php (added)
-
tags/3.8/core/FastCommentsWordPressIntegration.php (added)
-
tags/3.8/fastcomments-wordpress-plugin.php (added)
-
tags/3.8/public (added)
-
tags/3.8/public/fastcomments-public.php (added)
-
tags/3.8/public/fastcomments-widget-view.php (added)
-
tags/3.8/uninstall.php (added)
-
trunk/README.txt (modified) (2 diffs)
-
trunk/core/FastCommentsIntegrationCore.php (modified) (2 diffs)
-
trunk/core/FastCommentsWordPressIntegration.php (modified) (1 diff)
-
trunk/fastcomments-wordpress-plugin.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
fastcomments/trunk/README.txt
r2575549 r2575553 4 4 Requires at least: 4.6 5 5 Tested up to: 5.8 6 Stable tag: 3. 76 Stable tag: 3.8 7 7 Requires PHP: 5.2.4 8 8 License: GPLv2 or later … … 85 85 == Changelog == 86 86 87 = 3.8 = 88 * Improvements for when upgrading from 2.1. 89 87 90 = 3.7 = 88 91 * Improvements for when upgrading from 2.1. -
fastcomments/trunk/core/FastCommentsIntegrationCore.php
r2575532 r2575553 123 123 $tenantId = $this->getSettingValue('fastcomments_tenant_id'); 124 124 $token = $this->getSettingValue('fastcomments_token'); 125 if ($tenantId && $token) { 125 $isTokenValidated = $this->getSettingValue('fastcomments_token_validated'); 126 if ($tenantId && $token && $isTokenValidated) { 126 127 return 'integrationStatePollNext'; 127 128 } else { … … 142 143 if ($tokenUpsertResponse->status === 'success' && $tokenUpsertResponse->isTokenValidated === true) { 143 144 $this->setSettingValue('fastcomments_tenant_id', $tokenUpsertResponse->tenantId); 145 $this->setSettingValue('fastcomments_token_validated', true); 144 146 } 145 147 return null; -
fastcomments/trunk/core/FastCommentsWordPressIntegration.php
r2575549 r2575553 41 41 // force setup, but allow comment widget to load 42 42 delete_option('fastcomments_setup'); 43 delete_option('fastcomments_token_validated'); 43 44 } 44 45 -
fastcomments/trunk/fastcomments-wordpress-plugin.php
r2575549 r2575553 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. 76 Version: 3.8 7 7 Author: winrid @ FastComments 8 8 License: GPL-2.0+ … … 14 14 } 15 15 16 $FASTCOMMENTS_VERSION = 3. 7;16 $FASTCOMMENTS_VERSION = 3.8; 17 17 18 18
Note: See TracChangeset
for help on using the changeset viewer.