Changeset 2044174
- Timestamp:
- 03/04/2019 07:54:05 PM (7 years ago)
- Location:
- disqus-comment-system/trunk
- Files:
-
- 4 added
- 4 deleted
- 4 edited
-
README.txt (modified) (2 diffs)
-
admin/bundles/js/en.disqus-admin.bundle.3.0.16.js (deleted)
-
admin/bundles/js/en.disqus-admin.bundle.3.0.16.js.map (deleted)
-
admin/bundles/js/en.disqus-admin.bundle.3.0.16.min.js (deleted)
-
admin/bundles/js/en.disqus-admin.bundle.3.0.16.min.js.map (deleted)
-
admin/bundles/js/en.disqus-admin.bundle.3.0.17.js (added)
-
admin/bundles/js/en.disqus-admin.bundle.3.0.17.js.map (added)
-
admin/bundles/js/en.disqus-admin.bundle.3.0.17.min.js (added)
-
admin/bundles/js/en.disqus-admin.bundle.3.0.17.min.js.map (added)
-
admin/class-disqus-admin.php (modified) (1 diff)
-
disqus.php (modified) (2 diffs)
-
rest-api/class-disqus-rest-api.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
disqus-comment-system/trunk/README.txt
r1881615 r2044174 3 3 Tags: comments, threaded, email, notification, spam, avatars, community, profile, widget, disqus 4 4 Requires at least: 4.4 5 Tested up to: 4.9.46 Stable tag: 3.0.1 65 Tested up to: 5.1 6 Stable tag: 3.0.17 7 7 Requires PHP: 5.4 8 8 … … 125 125 == Changelog == 126 126 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 127 131 = 3.0.16 = 128 132 -
disqus-comment-system/trunk/admin/class-disqus-admin.php
r1831152 r2044174 165 165 } 166 166 167 $current_host = $_SERVER['HTTP_HOST'];167 $current_host = isset( $_SERVER['HTTP_HOST'] ) ? $_SERVER['HTTP_HOST'] : $rest_host; 168 168 169 169 if ( $rest_host !== $current_host ) { -
disqus-comment-system/trunk/disqus.php
r1881615 r2044174 16 16 * Plugin URI: https://disqus.com/ 17 17 * Description: Disqus helps publishers increase engagement and build loyal audiences. Supports syncing comments to your database for easy backup. 18 * Version: 3.0.1 618 * Version: 3.0.17 19 19 * Author: Disqus 20 20 * Author URI: https://disqus.com/ … … 25 25 */ 26 26 27 $DISQUSVERSION = '3.0.1 6';27 $DISQUSVERSION = '3.0.17'; 28 28 29 29 // If this file is called directly, abort. -
disqus-comment-system/trunk/rest-api/class-disqus-rest-api.php
r1881615 r2044174 635 635 * in the WordPress database given a Disqus post. 636 636 * 637 * @since 3.0.1 6637 * @since 3.0.17 638 638 * @param array $post The Disqus post object. 639 639 * @return int The created or updated comment ID.
Note: See TracChangeset
for help on using the changeset viewer.