Changeset 1025691
- Timestamp:
- 11/14/2014 12:10:35 PM (11 years ago)
- Location:
- post-status-scheduler/trunk
- Files:
-
- 3 edited
-
classes/settings.php (modified) (1 diff)
-
post-status-scheduler.php (modified) (1 diff)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
post-status-scheduler/trunk/classes/settings.php
r1013039 r1025691 248 248 249 249 // Get all valid public post types 250 $post_types = get_post_types( array( 'public' => true ));250 $post_types = get_post_types(); 251 251 252 252 $options = get_option( 'post_status_scheduler' ); -
post-status-scheduler/trunk/post-status-scheduler.php
r1013039 r1025691 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.0. 0' );44 if( !defined( 'POST_STATUS_SCHEDULER_VERSION' ) ) define( 'POST_STATUS_SCHEDULER_VERSION', '1.0.1' ); 45 45 46 46 // Create a new scheduler instance -
post-status-scheduler/trunk/readme.txt
r1013039 r1025691 4 4 Requires at least: 3.9 5 5 Tested up to: 4.0 6 Stable tag: 1.0. 06 Stable tag: 1.0.1 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 52 52 == Changelog == 53 53 54 = 1.0.1 = 55 * Fixed bug where, in settings, you could only choose public post types to show scheduler on (Reported on Github). 56 54 57 = 1.0.0 = 55 58 * New feature for sending email notification to post author when executing a scheduled update. … … 69 72 = 0.1 = 70 73 * Initial version 74 75 == Upgrade Notice == 76 77 = 1.0.1 = 78 * Gives you more post types to choose from.
Note: See TracChangeset
for help on using the changeset viewer.