Changeset 2225553
- Timestamp:
- 01/10/2020 05:48:03 PM (6 years ago)
- Location:
- coschedule-by-todaymade/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (3 diffs)
-
tm-scheduler.php (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
-
coschedule-by-todaymade/trunk/readme.txt
r2151129 r2225553 4 4 Tags: Content marketing calendar, drag and drop editorial calendar plugin, social media scheduling, editorial calendar plugin, content marketing, social automation tool, pinterest integration, schedule facebook posts, schedule to twitter, social media, tumblr, schedule posts to google+, schedule posts to Linkedin, Google Analytics, social media analytics, Google Docs integration, Evernote integration, Click to Tweet 5 5 Requires at least: 3.5 6 Tested up to: 5. 2.27 Stable tag: 3. 2.96 Tested up to: 5.3.2 7 Stable tag: 3.3.0 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 97 97 98 98 == Changelog == 99 100 = 3.3.0 = 101 * Fixed a cache bust bug that could prevent external asset load. Updated implode() function references to use non-deprecated argument order. 102 99 103 = 3.2.9 = 100 104 * Removed an unused plugin action link filter … … 358 362 359 363 == Upgrade Notice == 364 365 = 3.3.0 = 366 * Fixed a cache bust bug that could prevent external asset load. Updated implode() function references to use non-deprecated argument order. 367 360 368 = 3.2.9 = 361 369 * Removed an unused plugin action link filter -
coschedule-by-todaymade/trunk/tm-scheduler.php
r2151129 r2225553 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.95 Version: 3.3.0 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.9";26 private $version = "3.3.0"; 27 27 private $build; 28 28 private $connected = false; … … 48 48 49 49 // Load variables 50 $this->build = intval( " 89" );50 $this->build = intval( "90" ); 51 51 $this->token = get_option( 'tm_coschedule_token' ); 52 52 $this->calendar_id = get_option( 'tm_coschedule_calendar_id' ); … … 1113 1113 // Process category 1114 1114 if ( isset( $post['post_category'] ) && ! is_null( $post['post_category'] ) ) { 1115 $post['post_category'] = implode( $post['post_category'], ',');1115 $post['post_category'] = implode( ',', $post['post_category'] ); 1116 1116 } else { 1117 1117 $post['post_category'] = ""; … … 1701 1701 } 1702 1702 1703 $unix_length = 13; // Length of unix timestamp in milliseconds 1704 1703 1705 // Validate response 1704 1706 if ( true === is_string( $response ) ) { 1705 1707 $result = $response; 1706 } elseif ( true === is_array( $response ) && true === isset( $response['body'] ) ) {1708 } elseif ( true === is_array( $response ) && true === isset( $response['body'] ) && is_string( $response['body'] ) && $unix_length === strlen( $response['body'] ) ) { 1707 1709 $result = $response['body']; 1708 1710 } else { … … 2101 2103 } while ( $i < strlen( $data ) ); 2102 2104 2103 $enc = implode( $tmp_arr, '');2105 $enc = implode( '', $tmp_arr ); 2104 2106 $r = ( strlen( $data ) % 3 ); 2105 2107
Note: See TracChangeset
for help on using the changeset viewer.