Changeset 2585075
- Timestamp:
- 08/18/2021 08:53:53 PM (5 years ago)
- Location:
- fastcomments
- Files:
-
- 34 added
- 3 edited
-
tags/3.9.6 (added)
-
tags/3.9.6/.gitignore (added)
-
tags/3.9.6/LICENSE (added)
-
tags/3.9.6/README.md (added)
-
tags/3.9.6/README.txt (added)
-
tags/3.9.6/admin (added)
-
tags/3.9.6/admin/fastcomments-admin-setup-view.js (added)
-
tags/3.9.6/admin/fastcomments-admin-setup-view.php (added)
-
tags/3.9.6/admin/fastcomments-admin-sso-view.css (added)
-
tags/3.9.6/admin/fastcomments-admin-sso-view.js (added)
-
tags/3.9.6/admin/fastcomments-admin-sso-view.php (added)
-
tags/3.9.6/admin/fastcomments-admin-support-view.php (added)
-
tags/3.9.6/admin/fastcomments-admin-view.php (added)
-
tags/3.9.6/admin/fastcomments-admin.css (added)
-
tags/3.9.6/admin/fastcomments-admin.php (added)
-
tags/3.9.6/admin/images (added)
-
tags/3.9.6/admin/images/api.png (added)
-
tags/3.9.6/admin/images/crown.png (added)
-
tags/3.9.6/admin/images/css.png (added)
-
tags/3.9.6/admin/images/debugging.png (added)
-
tags/3.9.6/admin/images/download.png (added)
-
tags/3.9.6/admin/images/home.png (added)
-
tags/3.9.6/admin/images/logo-50.png (added)
-
tags/3.9.6/admin/images/logo.png (added)
-
tags/3.9.6/admin/images/support.png (added)
-
tags/3.9.6/admin/images/sync.png (added)
-
tags/3.9.6/core (added)
-
tags/3.9.6/core/FastCommentsIntegrationCore.php (added)
-
tags/3.9.6/core/FastCommentsWordPressIntegration.php (added)
-
tags/3.9.6/fastcomments-wordpress-plugin.php (added)
-
tags/3.9.6/public (added)
-
tags/3.9.6/public/fastcomments-public.php (added)
-
tags/3.9.6/public/fastcomments-widget-view.php (added)
-
tags/3.9.6/uninstall.php (added)
-
trunk/README.txt (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
r2584331 r2585075 4 4 Requires at least: 4.6 5 5 Tested up to: 5.8 6 Stable tag: 3.9. 56 Stable tag: 3.9.6 7 7 Requires PHP: 5.2.4 8 8 License: GPLv2 or later … … 85 85 == Changelog == 86 86 87 = 3.9.6 = 88 * Improved accuracy on initial sync with parent/child comments. 89 87 90 = 3.9.5 = 88 91 * Improved comment date accuracy on reverse sync + switching to WordPress built in mechanisms for HTTP requests. -
fastcomments/trunk/core/FastCommentsWordPressIntegration.php
r2584331 r2585075 256 256 $fc_comment['commenterEmail'] = $wp_comment->comment_author_email; 257 257 $fc_comment['comment'] = $wp_comment->comment_content ? $wp_comment->comment_content : ''; 258 $fc_comment['externalParentId'] = $wp_comment->comment_parent ;258 $fc_comment['externalParentId'] = $wp_comment->comment_parent ? $wp_comment->comment_parent : null; // 0 is the WP default (no parent). we can't do anything with 0. 259 259 $fc_comment['date'] = $wp_comment->comment_date; 260 260 $fc_comment['votes'] = $votes; -
fastcomments/trunk/fastcomments-wordpress-plugin.php
r2584331 r2585075 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.9. 56 Version: 3.9.6 7 7 Author: winrid @ FastComments 8 8 License: GPL-2.0+ … … 14 14 } 15 15 16 $FASTCOMMENTS_VERSION = 3.9 5;16 $FASTCOMMENTS_VERSION = 3.96; 17 17 18 18 require_once plugin_dir_path(__FILE__) . 'admin/fastcomments-admin.php';
Note: See TracChangeset
for help on using the changeset viewer.