Plugin Directory

Changeset 2585075


Ignore:
Timestamp:
08/18/2021 08:53:53 PM (5 years ago)
Author:
winrid
Message:

3.9.6 - Improved accuracy on initial sync with parent/child comments.

Location:
fastcomments
Files:
34 added
3 edited

Legend:

Unmodified
Added
Removed
  • fastcomments/trunk/README.txt

    r2584331 r2585075  
    44Requires at least: 4.6
    55Tested up to: 5.8
    6 Stable tag: 3.9.5
     6Stable tag: 3.9.6
    77Requires PHP: 5.2.4
    88License: GPLv2 or later
     
    8585== Changelog ==
    8686
     87= 3.9.6 =
     88* Improved accuracy on initial sync with parent/child comments.
     89
    8790= 3.9.5 =
    8891* Improved comment date accuracy on reverse sync + switching to WordPress built in mechanisms for HTTP requests.
  • fastcomments/trunk/core/FastCommentsWordPressIntegration.php

    r2584331 r2585075  
    256256        $fc_comment['commenterEmail'] = $wp_comment->comment_author_email;
    257257        $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.
    259259        $fc_comment['date'] = $wp_comment->comment_date;
    260260        $fc_comment['votes'] = $votes;
  • fastcomments/trunk/fastcomments-wordpress-plugin.php

    r2584331 r2585075  
    44Plugin URI: https://fastcomments.com
    55Description: Live Comments, Fast. A comment system that will delight your users and developers.
    6 Version: 3.9.5
     6Version: 3.9.6
    77Author: winrid @ FastComments
    88License: GPL-2.0+
     
    1414}
    1515
    16 $FASTCOMMENTS_VERSION = 3.95;
     16$FASTCOMMENTS_VERSION = 3.96;
    1717
    1818require_once plugin_dir_path(__FILE__) . 'admin/fastcomments-admin.php';
Note: See TracChangeset for help on using the changeset viewer.