Changeset 1539458
- Timestamp:
- 11/23/2016 11:51:54 PM (9 years ago)
- Location:
- require-featured-image/trunk
- Files:
-
- 2 added
- 2 edited
-
composer.json (added)
-
lang/require-featured-image-ja.mo (added)
-
readme.txt (modified) (2 diffs)
-
require-featured-image.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
require-featured-image/trunk/readme.txt
r1355892 r1539458 4 4 Tags: featured image, images, edit, post, admin, require featured image, image, media, thumbnail, thumbnails, post thumbnail, photo, pictures 5 5 Requires at least: 3.5 6 Tested up to: 4. 4.17 Stable tag: 1.2. 26 Tested up to: 4.6.1 7 Stable tag: 1.2.3 8 8 License: MIT 9 9 License URI: http://opensource.org/licenses/MIT … … 70 70 71 71 == 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. 72 76 73 77 = 1.2.2 (2016.02.22) = -
require-featured-image/trunk/require-featured-image.php
r1355892 r1539458 5 5 Description: Like it says on the tin: requires posts to have a featured image set before they'll be published. 6 6 Author: Press Up 7 Version: 1.2. 27 Version: 1.2.3 8 8 Author URI: http://pressupinc.com 9 9 Text Domain: require-featured-image … … 51 51 function rfi_set_default_on_activation() { 52 52 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 ); 54 56 } 55 57
Note: See TracChangeset
for help on using the changeset viewer.