Changeset 2059000
- Timestamp:
- 03/28/2019 02:50:44 PM (7 years ago)
- Location:
- coschedule-by-todaymade
- Files:
-
- 7 added
- 2 edited
-
tags/3.2.6 (added)
-
tags/3.2.6/_access-denied.php (added)
-
tags/3.2.6/_missing-token.php (added)
-
tags/3.2.6/frame.php (added)
-
tags/3.2.6/plugin_setup.php (added)
-
tags/3.2.6/readme.txt (added)
-
tags/3.2.6/tm-scheduler.php (added)
-
trunk/readme.txt (modified) (3 diffs)
-
trunk/tm-scheduler.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
coschedule-by-todaymade/trunk/readme.txt
r2044683 r2059000 5 5 Requires at least: 3.5 6 6 Tested up to: 5.1.0 7 Stable tag: 3.2. 57 Stable tag: 3.2.6 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 90 90 91 91 == Changelog == 92 = 3.2.6 = 93 * Adds a new optional filter for conditional post syncing 94 92 95 = 3.2.5 = 93 96 * Minor updates for better Gutenberg compatibility. … … 339 342 340 343 == Upgrade Notice == 344 = 3.2.6 = 345 * Adds a new optional filter for conditional post syncing 346 341 347 = 3.2.5 = 342 348 * Minor updates for better Gutenberg compatibility. -
coschedule-by-todaymade/trunk/tm-scheduler.php
r2044683 r2059000 3 3 Plugin Name: CoSchedule 4 4 Description: Plan, organize, and execute every content marketing project in one place with CoSchedule, an all-in-one content marketing editorial calendar solution. 5 Version: 3.2. 55 Version: 3.2.6 6 6 Author: CoSchedule 7 7 Author URI: http://coschedule.com/ … … 24 24 private $app = "https://app.coschedule.com"; 25 25 private $assets = "https://assets.coschedule.com"; 26 private $version = "3.2. 5";26 private $version = "3.2.6"; 27 27 private $build; 28 28 private $connected = false; … … 48 48 49 49 // Load variables 50 $this->build = intval( "8 5" );50 $this->build = intval( "86" ); 51 51 $this->token = get_option( 'tm_coschedule_token' ); 52 52 $this->calendar_id = get_option( 'tm_coschedule_calendar_id' ); … … 1401 1401 */ 1402 1402 public function sync_post_callback( $post_id ) { 1403 if ( true === $this->connected && ! wp_is_post_revision( $post_id ) ) { 1403 $filter_result = apply_filters( 'tm_coschedule_sync_post_callback_filter', true, $post_id ); 1404 if ( true === $this->connected && ! wp_is_post_revision( $post_id ) && $filter_result ) { 1404 1405 $post = $this->get_full_post( $post_id ); 1405 1406 $post_type = $this->get_value_or_default( $post['post_type'], 'post' );
Note: See TracChangeset
for help on using the changeset viewer.