Changeset 1889719
- Timestamp:
- 06/08/2018 02:42:04 PM (8 years ago)
- Location:
- coschedule-by-todaymade
- Files:
-
- 7 added
- 2 edited
-
tags/3.1.1 (added)
-
tags/3.1.1/_access-denied.html (added)
-
tags/3.1.1/_missing-token.html (added)
-
tags/3.1.1/frame.php (added)
-
tags/3.1.1/plugin_setup.php (added)
-
tags/3.1.1/readme.txt (added)
-
tags/3.1.1/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
r1868356 r1889719 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: 4.9. 57 Stable tag: 3.1. 06 Tested up to: 4.9.6 7 Stable tag: 3.1.1 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.1.1 = 93 * Fixes a potential issue with social media previews on WordPress version 4.9.6 94 92 95 = 3.1.0 = 93 96 * Internal changes for improving social preview accuracy … … 318 321 319 322 == Upgrade Notice == 323 = 3.1.1 = 324 * Fixes a potential issue with social media previews on WordPress version 4.9.6 325 320 326 = 3.1.0 = 321 327 * Internal changes for improving social preview accuracy -
coschedule-by-todaymade/trunk/tm-scheduler.php
r1868361 r1889719 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.1. 05 Version: 3.1.1 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.1. 0";26 private $version = "3.1.1"; 27 27 private $build; 28 28 private $connected = false; … … 48 48 49 49 // Load variables 50 $this->build = intval( "7 8" );50 $this->build = intval( "79" ); 51 51 $this->token = get_option( 'tm_coschedule_token' ); 52 52 $this->calendar_id = get_option( 'tm_coschedule_calendar_id' ); … … 748 748 749 749 $nonce = wp_create_nonce( 'coschedule_preview_' . $this->token .' _post_id-' . $post_id ); 750 wp_safe_redirect( add_query_arg( 'cos_preview', $nonce, get_permalink( $post_id ) ), 301 ); 750 $query_params = array( 751 'preview' => true, 752 'cos_preview' => $nonce, 753 ); 754 wp_safe_redirect( add_query_arg( $query_params, get_permalink( $post_id ) ), 302 ); 751 755 exit; 752 756 } catch ( Exception $e ) {
Note: See TracChangeset
for help on using the changeset viewer.