Plugin Directory

Changeset 1658384


Ignore:
Timestamp:
05/16/2017 11:39:02 AM (9 years ago)
Author:
farne
Message:

Checkin of version 1.2.11. One bugfix and a http to https conversion

Location:
post-status-scheduler/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • post-status-scheduler/trunk/classes/scheduler.php

    r1655707 r1658384  
    157157      // Abort if not a valid post type
    158158      if( !in_array( $post_type, $scheduler_options ) ) return $post_id;
     159
     160      // Abort if post is not an object
     161      if ( ! is_object( $post ) ) return $post_id;
    159162
    160163      // Add filter for developers to modify the received post data
     
    447450        wp_enqueue_style( array( 'dashicons' ) );
    448451       
    449         wp_register_style('jquery-ui', 'http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/base/jquery-ui.css');
     452        wp_register_style('jquery-ui', 'https://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/base/jquery-ui.css');
    450453        wp_enqueue_style( 'jquery-ui' );
    451454
  • post-status-scheduler/trunk/post-status-scheduler.php

    r1655707 r1658384  
    55  Plugin Name: Post Status Scheduler
    66  Description: Change status, category or postmeta of any post type at a scheduled timestamp.
    7   Version: 1.2.9
     7  Version: 1.2.11
    88  Author: Andreas Färnstrand <[email protected]>
    99  Author URI: http://www.farnstranddev.se
     
    4242        if( !defined( 'POST_STATUS_SCHEDULER_TEXTDOMAIN' ) )         define( 'POST_STATUS_SCHEDULER_TEXTDOMAIN', 'post-status-scheduler' );
    4343    if( !defined( 'POST_STATUS_SCHEDULER_TEXTDOMAIN_PATH' ) )    define( 'POST_STATUS_SCHEDULER_TEXTDOMAIN_PATH', dirname( plugin_basename( __FILE__) ) .'/languages' );
    44     if( !defined( 'POST_STATUS_SCHEDULER_VERSION' ) )            define( 'POST_STATUS_SCHEDULER_VERSION', '1.2.9' );
     44    if( !defined( 'POST_STATUS_SCHEDULER_VERSION' ) )            define( 'POST_STATUS_SCHEDULER_VERSION', '1.2.11' );
    4545
    4646    // Create a new scheduler instance
  • post-status-scheduler/trunk/readme.txt

    r1655707 r1658384  
    44Requires at least: 3.9
    55Tested up to: 4.7.3
    6 Stable tag: 1.2.9
     6Stable tag: 1.2.11
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    5353== Changelog ==
    5454
     55= 1.2.11 =
     56* Fixed bug on when creating new posts and no previous post object exists.
     57* Fix so loading of jquery ui is managed through https.
     58
    5559= 1.2.9 =
    5660* Fixed bug where previous scheduled time was not fetched properly
     
    9599== Upgrade Notice ==
    96100
     101= 1.2.11 =
     102* Now loads jquery ui through https.
     103
    97104= 1.2.7 =
    98105* It is now possible to display either both categories and tags or just one of them in the dropdown when scheduling a change.
Note: See TracChangeset for help on using the changeset viewer.