Changeset 1971681
- Timestamp:
- 11/09/2018 04:15:38 PM (7 years ago)
- Location:
- coschedule-by-todaymade
- Files:
-
- 7 added
- 2 deleted
- 2 edited
-
tags/3.2.3 (added)
-
tags/3.2.3/_access-denied.php (added)
-
tags/3.2.3/_missing-token.php (added)
-
tags/3.2.3/frame.php (added)
-
tags/3.2.3/plugin_setup.php (added)
-
tags/3.2.3/readme.txt (added)
-
tags/3.2.3/tm-scheduler.php (added)
-
trunk/_access-denied.html (deleted)
-
trunk/_missing-token.html (deleted)
-
trunk/readme.txt (modified) (3 diffs)
-
trunk/tm-scheduler.php (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
coschedule-by-todaymade/trunk/readme.txt
r1947563 r1971681 5 5 Requires at least: 3.5 6 6 Tested up to: 4.9.6 7 Stable tag: 3.2. 27 Stable tag: 3.2.3 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.3 = 93 * Adds a new optional filter for external plugin compatibility of post content attachments when syncing 94 92 95 = 3.2.2 = 93 96 * Updates for WordPress VIP standards … … 330 333 331 334 == Upgrade Notice == 335 = 3.2.3 = 336 * Adds a new optional filter for external plugin compatibility of post content attachments when syncing 337 332 338 = 3.2.2 = 333 339 * Updates for WordPress VIP standards -
coschedule-by-todaymade/trunk/tm-scheduler.php
r1947563 r1971681 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. 25 Version: 3.2.3 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. 2";26 private $version = "3.2.3"; 27 27 private $build; 28 28 private $connected = false; … … 48 48 49 49 // Load variables 50 $this->build = intval( "8 2" );50 $this->build = intval( "83" ); 51 51 $this->token = get_option( 'tm_coschedule_token' ); 52 52 $this->calendar_id = get_option( 'tm_coschedule_calendar_id' ); … … 1206 1206 * Get array of all attachments of the post 1207 1207 * 1208 * @param $ content1208 * @param $post_content 1209 1209 * 1210 1210 * @return array 1211 1211 */ 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 ); 1213 1215 $attachments = array(); 1214 1216
Note: See TracChangeset
for help on using the changeset viewer.