Plugin Directory

Changeset 1971681


Ignore:
Timestamp:
11/09/2018 04:15:38 PM (7 years ago)
Author:
rveitch
Message:

Updating plugin 3.2.3

Location:
coschedule-by-todaymade
Files:
7 added
2 deleted
2 edited

Legend:

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

    r1947563 r1971681  
    55Requires at least: 3.5
    66Tested up to: 4.9.6
    7 Stable tag: 3.2.2
     7Stable tag: 3.2.3
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    9090
    9191== Changelog ==
     92= 3.2.3 =
     93* Adds a new optional filter for external plugin compatibility of post content attachments when syncing
     94
    9295= 3.2.2 =
    9396* Updates for WordPress VIP standards
     
    330333
    331334== Upgrade Notice ==
     335= 3.2.3 =
     336* Adds a new optional filter for external plugin compatibility of post content attachments when syncing
     337
    332338= 3.2.2 =
    333339* Updates for WordPress VIP standards
  • coschedule-by-todaymade/trunk/tm-scheduler.php

    r1947563 r1971681  
    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.2
     5Version: 3.2.3
    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.2";
     26        private $version = "3.2.3";
    2727        private $build;
    2828        private $connected = false;
     
    4848
    4949            // Load variables
    50             $this->build                  = intval( "82" );
     50            $this->build                  = intval( "83" );
    5151            $this->token                  = get_option( 'tm_coschedule_token' );
    5252            $this->calendar_id            = get_option( 'tm_coschedule_calendar_id' );
     
    12061206         * Get array of all attachments of the post
    12071207         *
    1208          * @param $content
     1208         * @param $post_content
    12091209         *
    12101210         * @return array
    12111211         */
    1212         public function get_attachments( $content ) {
     1212        public function get_attachments( $post_content ) {
     1213            // Allow external plugins to filter the post content as needed for plugin or theme compatibility
     1214            $content = apply_filters( 'tm_coschedule_get_attachments_content', $post_content );
    12131215            $attachments = array();
    12141216
Note: See TracChangeset for help on using the changeset viewer.