Plugin Directory

Changeset 2044174


Ignore:
Timestamp:
03/04/2019 07:54:05 PM (7 years ago)
Author:
Disqus
Message:

Preparing for 3.0.17 release

Location:
disqus-comment-system/trunk
Files:
4 added
4 deleted
4 edited

Legend:

Unmodified
Added
Removed
  • disqus-comment-system/trunk/README.txt

    r1881615 r2044174  
    33Tags: comments, threaded, email, notification, spam, avatars, community, profile, widget, disqus
    44Requires at least: 4.4
    5 Tested up to: 4.9.4
    6 Stable tag: 3.0.16
     5Tested up to: 5.1
     6Stable tag: 3.0.17
    77Requires PHP: 5.4
    88
     
    125125== Changelog ==
    126126
     127= 3.0.17 =
     128* Bumping version for WP 5.1 version bump. (Changes to README versions and main php file's version)
     129* Fixed Undefined index bug where HTTP_HOST could not find web server
     130
    127131= 3.0.16 =
    128132
  • disqus-comment-system/trunk/admin/class-disqus-admin.php

    r1831152 r2044174  
    165165        }
    166166
    167         $current_host = $_SERVER['HTTP_HOST'];
     167        $current_host = isset( $_SERVER['HTTP_HOST'] ) ? $_SERVER['HTTP_HOST'] : $rest_host;
    168168
    169169        if ( $rest_host !== $current_host ) {
  • disqus-comment-system/trunk/disqus.php

    r1881615 r2044174  
    1616 * Plugin URI:        https://disqus.com/
    1717 * Description:       Disqus helps publishers increase engagement and build loyal audiences. Supports syncing comments to your database for easy backup.
    18  * Version:           3.0.16
     18 * Version:           3.0.17
    1919 * Author:            Disqus
    2020 * Author URI:        https://disqus.com/
     
    2525 */
    2626
    27 $DISQUSVERSION = '3.0.16';
     27$DISQUSVERSION = '3.0.17';
    2828
    2929// If this file is called directly, abort.
  • disqus-comment-system/trunk/rest-api/class-disqus-rest-api.php

    r1881615 r2044174  
    635635     * in the WordPress database given a Disqus post.
    636636     *
    637      * @since    3.0.16
     637     * @since    3.0.17
    638638     * @param    array $post    The Disqus post object.
    639639     * @return   int            The created or updated comment ID.
Note: See TracChangeset for help on using the changeset viewer.