Plugin Directory

Changeset 1539458


Ignore:
Timestamp:
11/23/2016 11:51:54 PM (9 years ago)
Author:
pressupinc
Message:

deploy from git

Location:
require-featured-image/trunk
Files:
2 added
2 edited

Legend:

Unmodified
Added
Removed
  • require-featured-image/trunk/readme.txt

    r1355892 r1539458  
    44Tags: featured image, images, edit, post, admin, require featured image, image, media, thumbnail, thumbnails, post thumbnail, photo, pictures
    55Requires at least: 3.5
    6 Tested up to: 4.4.1
    7 Stable tag: 1.2.2
     6Tested up to: 4.6.1
     7Stable tag: 1.2.3
    88License: MIT
    99License URI: http://opensource.org/licenses/MIT
     
    7070
    7171== CHANGELOG ==
     72
     73= 1.2.3 (2016.11.23) =
     74* Fixing an issue that would make the plugin seem not to work when newly installed.
     75* Adding composer.json and Japanese translation.
    7276
    7377= 1.2.2 (2016.02.22) =
  • require-featured-image/trunk/require-featured-image.php

    r1355892 r1539458  
    55Description: Like it says on the tin: requires posts to have a featured image set before they'll be published.
    66Author: Press Up
    7 Version: 1.2.2
     7Version: 1.2.3
    88Author URI: http://pressupinc.com
    99Text Domain: require-featured-image
     
    5151function rfi_set_default_on_activation() {
    5252    add_option( 'rfi_post_types', array('post') );
    53     add_option( 'rfi_enforcement_start', time() );
     53    // We added the 86400 (one day) below, because without it
     54    //      first run behavior was confusing
     55    add_option( 'rfi_enforcement_start', time() - 86400 );
    5456}
    5557
Note: See TracChangeset for help on using the changeset viewer.