Plugin Directory

Changeset 1889719


Ignore:
Timestamp:
06/08/2018 02:42:04 PM (8 years ago)
Author:
rveitch
Message:

Updating plugin 3.1.1

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

Legend:

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

    r1868356 r1889719  
    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: 4.9.5
    7 Stable tag: 3.1.0
     6Tested up to: 4.9.6
     7Stable tag: 3.1.1
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    9090
    9191== Changelog ==
     92= 3.1.1 =
     93* Fixes a potential issue with social media previews on WordPress version 4.9.6
     94
    9295= 3.1.0 =
    9396* Internal changes for improving social preview accuracy
     
    318321
    319322== Upgrade Notice ==
     323= 3.1.1 =
     324* Fixes a potential issue with social media previews on WordPress version 4.9.6
     325
    320326= 3.1.0 =
    321327* Internal changes for improving social preview accuracy
  • coschedule-by-todaymade/trunk/tm-scheduler.php

    r1868361 r1889719  
    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.1.0
     5Version: 3.1.1
    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.1.0";
     26        private $version = "3.1.1";
    2727        private $build;
    2828        private $connected = false;
     
    4848
    4949            // Load variables
    50             $this->build                  = intval( "78" );
     50            $this->build                  = intval( "79" );
    5151            $this->token                  = get_option( 'tm_coschedule_token' );
    5252            $this->calendar_id            = get_option( 'tm_coschedule_calendar_id' );
     
    748748
    749749                $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 );
    751755                exit;
    752756            } catch ( Exception $e ) {
Note: See TracChangeset for help on using the changeset viewer.