Changeset 1658384
- Timestamp:
- 05/16/2017 11:39:02 AM (9 years ago)
- Location:
- post-status-scheduler/trunk
- Files:
-
- 3 edited
-
classes/scheduler.php (modified) (2 diffs)
-
post-status-scheduler.php (modified) (2 diffs)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
post-status-scheduler/trunk/classes/scheduler.php
r1655707 r1658384 157 157 // Abort if not a valid post type 158 158 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; 159 162 160 163 // Add filter for developers to modify the received post data … … 447 450 wp_enqueue_style( array( 'dashicons' ) ); 448 451 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'); 450 453 wp_enqueue_style( 'jquery-ui' ); 451 454 -
post-status-scheduler/trunk/post-status-scheduler.php
r1655707 r1658384 5 5 Plugin Name: Post Status Scheduler 6 6 Description: Change status, category or postmeta of any post type at a scheduled timestamp. 7 Version: 1.2. 97 Version: 1.2.11 8 8 Author: Andreas Färnstrand <[email protected]> 9 9 Author URI: http://www.farnstranddev.se … … 42 42 if( !defined( 'POST_STATUS_SCHEDULER_TEXTDOMAIN' ) ) define( 'POST_STATUS_SCHEDULER_TEXTDOMAIN', 'post-status-scheduler' ); 43 43 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' ); 45 45 46 46 // Create a new scheduler instance -
post-status-scheduler/trunk/readme.txt
r1655707 r1658384 4 4 Requires at least: 3.9 5 5 Tested up to: 4.7.3 6 Stable tag: 1.2. 96 Stable tag: 1.2.11 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 53 53 == Changelog == 54 54 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 55 59 = 1.2.9 = 56 60 * Fixed bug where previous scheduled time was not fetched properly … … 95 99 == Upgrade Notice == 96 100 101 = 1.2.11 = 102 * Now loads jquery ui through https. 103 97 104 = 1.2.7 = 98 105 * 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.