Plugin Directory

Changeset 1025691


Ignore:
Timestamp:
11/14/2014 12:10:35 PM (11 years ago)
Author:
farne
Message:

Fixed bug where only public post types where able to be chosen in settings.
version 1.0.1

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

Legend:

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

    r1013039 r1025691  
    248248
    249249      // Get all valid public post types
    250       $post_types = get_post_types( array( 'public' => true ) );
     250      $post_types = get_post_types();
    251251
    252252      $options = get_option( 'post_status_scheduler' );
  • post-status-scheduler/trunk/post-status-scheduler.php

    r1013039 r1025691  
    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.0.0' );
     44    if( !defined( 'POST_STATUS_SCHEDULER_VERSION' ) )            define( 'POST_STATUS_SCHEDULER_VERSION', '1.0.1' );
    4545
    4646    // Create a new scheduler instance
  • post-status-scheduler/trunk/readme.txt

    r1013039 r1025691  
    44Requires at least: 3.9
    55Tested up to: 4.0
    6 Stable tag: 1.0.0
     6Stable tag: 1.0.1
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    5252== Changelog ==
    5353
     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
    5457= 1.0.0 =
    5558* New feature for sending email notification to post author when executing a scheduled update.
     
    6972= 0.1 =
    7073* 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.