Changeset 1818589
- Timestamp:
- 02/08/2018 10:13:46 PM (8 years ago)
- Location:
- disqus-comment-system/trunk
- Files:
-
- 1 added
- 1 deleted
- 3 edited
-
README.txt (modified) (2 diffs)
-
admin/bundles/js/en.disqus-admin.bundle.3.0.10.min.js (added)
-
admin/bundles/js/en.disqus-admin.bundle.3.0.9.min.js (deleted)
-
disqus.php (modified) (3 diffs)
-
rest-api/class-disqus-rest-api.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
disqus-comment-system/trunk/README.txt
r1817759 r1818589 4 4 Requires at least: 4.4 5 5 Tested up to: 4.9.4 6 Stable tag: 3.0. 97 Requires PHP: 5. 6.06 Stable tag: 3.0.10 7 Requires PHP: 5.4 8 8 9 9 Disqus is the web's most popular comment system. Use Disqus to increase engagement, retain readers, and grow your audience. … … 120 120 == Changelog == 121 121 122 = 3.0.10 = 123 124 * Lowered minimum-supported version of PHP to 5.4 125 * Fixed a syntax issue in PHP version 5.3 126 122 127 = 3.0.9 = 123 128 -
disqus-comment-system/trunk/disqus.php
r1817759 r1818589 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. 918 * Version: 3.0.10 19 19 * Author: Disqus 20 20 * Author URI: https://disqus.com/ … … 34 34 */ 35 35 function activate_disqus() { 36 if ( version_compare( phpversion(), '5. 6', '<' ) ) {36 if ( version_compare( phpversion(), '5.4', '<' ) ) { 37 37 deactivate_plugins( plugin_basename( __FILE__ ) ); 38 wp_die( 'Disqus requires PHP version 5. 6or higher. Plugin was deactivated.' );38 wp_die( 'Disqus requires PHP version 5.4 or higher. Plugin was deactivated.' ); 39 39 } 40 40 } … … 69 69 function run_disqus() { 70 70 71 $plugin = new Disqus( '3.0. 9' );71 $plugin = new Disqus( '3.0.10' ); 72 72 $plugin->run(); 73 73 -
disqus-comment-system/trunk/rest-api/class-disqus-rest-api.php
r1817585 r1818589 658 658 659 659 if ( null !== $first_identifier ) { 660 $wp_post_id = explode( ' ', $first_identifier, 2 )[0]; 660 $ident_parts = explode( ' ', $first_identifier, 2 ); 661 $wp_post_id = reset( $ident_parts ); 661 662 } 662 663
Note: See TracChangeset
for help on using the changeset viewer.