Plugin Directory

Changeset 2225553


Ignore:
Timestamp:
01/10/2020 05:48:03 PM (6 years ago)
Author:
rveitch
Message:

Updating plugin 3.3.0

Location:
coschedule-by-todaymade/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • coschedule-by-todaymade/trunk/readme.txt

    r2151129 r2225553  
    44Tags: 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
    55Requires at least: 3.5
    6 Tested up to: 5.2.2
    7 Stable tag: 3.2.9
     6Tested up to: 5.3.2
     7Stable tag: 3.3.0
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    9797
    9898== 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
    99103= 3.2.9 =
    100104* Removed an unused plugin action link filter
     
    358362
    359363== 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
    360368= 3.2.9 =
    361369* Removed an unused plugin action link filter
  • coschedule-by-todaymade/trunk/tm-scheduler.php

    r2151129 r2225553  
    33Plugin Name: CoSchedule
    44Description: 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.9
     5Version: 3.3.0
    66Author: CoSchedule
    77Author URI: http://coschedule.com/
     
    2424        private $app = "https://app.coschedule.com";
    2525        private $assets = "https://assets.coschedule.com";
    26         private $version = "3.2.9";
     26        private $version = "3.3.0";
    2727        private $build;
    2828        private $connected = false;
     
    4848
    4949            // Load variables
    50             $this->build                  = intval( "89" );
     50            $this->build                  = intval( "90" );
    5151            $this->token                  = get_option( 'tm_coschedule_token' );
    5252            $this->calendar_id            = get_option( 'tm_coschedule_calendar_id' );
     
    11131113            // Process category
    11141114            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'] );
    11161116            } else {
    11171117                $post['post_category'] = "";
     
    17011701            }
    17021702
     1703            $unix_length = 13; // Length of unix timestamp in milliseconds
     1704
    17031705            // Validate response
    17041706            if ( true === is_string( $response ) ) {
    17051707                $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'] ) ) {
    17071709                $result = $response['body'];
    17081710            } else {
     
    21012103            } while ( $i < strlen( $data ) );
    21022104
    2103             $enc = implode( $tmp_arr, '' );
     2105            $enc = implode( '', $tmp_arr );
    21042106            $r   = ( strlen( $data ) % 3 );
    21052107
Note: See TracChangeset for help on using the changeset viewer.