Changeset 1950181
- Timestamp:
- 10/02/2018 10:48:37 AM (7 years ago)
- Location:
- spotim-comments
- Files:
-
- 47 added
- 5 edited
-
tags/4.3.8 (added)
-
tags/4.3.8/.gitignore (added)
-
tags/4.3.8/assets (added)
-
tags/4.3.8/assets/images (added)
-
tags/4.3.8/assets/images/ajax-loader.gif (added)
-
tags/4.3.8/assets/javascripts (added)
-
tags/4.3.8/assets/javascripts/admin.js (added)
-
tags/4.3.8/assets/stylesheets (added)
-
tags/4.3.8/assets/stylesheets/admin.css (added)
-
tags/4.3.8/assets/stylesheets/comments-number.css (added)
-
tags/4.3.8/gulpfile.js (added)
-
tags/4.3.8/inc (added)
-
tags/4.3.8/inc/class-spotim-admin.php (added)
-
tags/4.3.8/inc/class-spotim-cron.php (added)
-
tags/4.3.8/inc/class-spotim-feed.php (added)
-
tags/4.3.8/inc/class-spotim-frontend.php (added)
-
tags/4.3.8/inc/class-spotim-i18n.php (added)
-
tags/4.3.8/inc/class-spotim-import.php (added)
-
tags/4.3.8/inc/class-spotim-metabox.php (added)
-
tags/4.3.8/inc/class-spotim-options.php (added)
-
tags/4.3.8/inc/class-spotim-settings-fields.php (added)
-
tags/4.3.8/inc/helpers (added)
-
tags/4.3.8/inc/helpers/class-spotim-comment.php (added)
-
tags/4.3.8/inc/helpers/class-spotim-form.php (added)
-
tags/4.3.8/inc/helpers/class-spotim-json-feed.php (added)
-
tags/4.3.8/inc/helpers/class-spotim-message.php (added)
-
tags/4.3.8/inc/helpers/index.php (added)
-
tags/4.3.8/inc/index.php (added)
-
tags/4.3.8/inc/spotim-shortcodes.php (added)
-
tags/4.3.8/inc/spotim-widgets.php (added)
-
tags/4.3.8/index.php (added)
-
tags/4.3.8/language (added)
-
tags/4.3.8/language/index.php (added)
-
tags/4.3.8/language/spotim-comments.pot (added)
-
tags/4.3.8/license.txt (added)
-
tags/4.3.8/package.json (added)
-
tags/4.3.8/readme.txt (added)
-
tags/4.3.8/spotim-comments.php (added)
-
tags/4.3.8/templates (added)
-
tags/4.3.8/templates/admin-template.php (added)
-
tags/4.3.8/templates/comments-number-template.php (added)
-
tags/4.3.8/templates/comments-template-empty.php (added)
-
tags/4.3.8/templates/comments-template.php (added)
-
tags/4.3.8/templates/index.php (added)
-
tags/4.3.8/templates/newsfeed-template.php (added)
-
tags/4.3.8/templates/recirculation-template.php (added)
-
tags/4.3.8/templates/siderail-template.php (added)
-
trunk/inc/class-spotim-cron.php (modified) (1 diff)
-
trunk/inc/class-spotim-frontend.php (modified) (1 diff)
-
trunk/inc/class-spotim-import.php (modified) (1 diff)
-
trunk/readme.txt (modified) (3 diffs)
-
trunk/spotim-comments.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
spotim-comments/trunk/inc/class-spotim-cron.php
r1786408 r1950181 123 123 $import->log( 'Iteration (end) #' . $page_number . ', Token:' . $execution_token ); 124 124 $import->log( $response ); 125 126 if($response && $response['status'] == 'continue') 127 $page_number++; // Increment 125 128 126 $page_number++; // Increment 127 128 } while ( $response && $response['status'] == 'continue' ); 129 } while ( $response && ($response['status'] == 'continue' || $response['status'] == 'refresh')); 129 130 130 131 $import->log( 'Finished Cron auto-sync', $response ); -
spotim-comments/trunk/inc/class-spotim-frontend.php
r1942443 r1950181 277 277 $counterPosition = self::$options->get('display_comments_count'); 278 278 279 if ('0' !== $counterPosition ) {279 if ('0' !== $counterPosition && self::has_spotim_comments()) { 280 280 281 281 // Comments count scripts -
spotim-comments/trunk/inc/class-spotim-import.php
r1947298 r1950181 105 105 * @param int $page_number Page number. Default is 0. 106 106 * @param int $posts_per_request Posts Per Request. Default is 1. 107 * @param bool $force ignore post eTag and force re-sync everything. 107 108 * 108 109 * @return void -
spotim-comments/trunk/readme.txt
r1947299 r1950181 1 === Spot.IM Comments ===1 === Spot.IM Comments === 2 2 Contributors: spotim, itay9001, ramiy, maor, rzvagelsky, idanm 3 3 Tags: Comment, comment form, commenting, comments, comment author, comment form, comment system, comment template, comments box, community, discuss, discussion, discussions, commenter, live update, real time, realtime, real-time, Spot.IM, reply, social login, widget, social, moderation, community, communities, engagement, Facebook, profile, sharing, newsfeed, chat, chat interface, notification, notifications, SEO, retention, pageviews, email alerts, direct message, direct messaging, group message, group messaging, content, content circulation, UGC, user generated content … … 5 5 Tested up to: 4.9 6 6 Requires PHP: 5.2 7 Stable tag: 4.3. 77 Stable tag: 4.3.8 8 8 License: GPLv2 or later 9 9 License URI: license.txt … … 203 203 204 204 == Changelog == 205 206 = 4.3.8 = 207 * Comments counter hotfix 208 * Auto sync hotfix 205 209 206 210 = 4.3.7 = -
spotim-comments/trunk/spotim-comments.php
r1947298 r1950181 4 4 * Plugin URI: https://wordpress.org/plugins/spotim-comments/ 5 5 * Description: Real-time comments widget turns your site into its own content-circulating ecosystem. 6 * Version: 4.3. 76 * Version: 4.3.8 7 7 * Author: Spot.IM 8 8 * Author URI: https://github.com/SpotIM
Note: See TracChangeset
for help on using the changeset viewer.