Changeset 2283980
- Timestamp:
- 04/15/2020 10:21:01 AM (6 years ago)
- Location:
- simple-feature-requests/trunk
- Files:
-
- 4 edited
-
inc/class-post-types.php (modified) (1 diff)
-
plugin-data.json (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
-
simple-feature-requests.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
simple-feature-requests/trunk/inc/class-post-types.php
r2282410 r2283980 103 103 104 104 if ( empty($simple_feature_requests_class) ) { 105 $archive_page_id = false;105 $archive_page_id = null; 106 106 } else { 107 107 $archive_page_id = absint( $simple_feature_requests_class->settings->get_setting( 'general_setup_archive_page_id' ) ); 108 108 } 109 109 110 $archive_page_id = ( empty($archive_page_id) ? null : $archive_page_id ); 110 111 $archive_page_id = apply_filters( 'jck_sfr_archive_page_id', $archive_page_id ); 111 112 return $archive_page_id; -
simple-feature-requests/trunk/plugin-data.json
r2282410 r2283980 1 1 { 2 "version": "2.1. 0",2 "version": "2.1.1", 3 3 "wp": "5.4", 4 4 "wp_requires": "4.9", -
simple-feature-requests/trunk/readme.txt
r2282410 r2283980 2 2 Contributors: jamesckemp 3 3 Donate link: 4 Tags: feature s, feature request, feature requests, uservoice, vote, votes, user voice, community, feedback5 Requires at least: 4. 04 Tags: feature requests, uservoice, canny, votes, feedback 5 Requires at least: 4.9 6 6 Tested up to: 5.4 7 Stable tag: trunk7 Stable tag: 2.1.1 8 8 Requires PHP: 5.4 9 9 License: GPLv2 or later … … 103 103 == Changelog == 104 104 105 **v2.1.1** (2020-04-15) 106 [fix] Ensure archive ID isn't cached to 0 107 105 108 **v2.1.0** (2020-04-13) 106 109 [new] Choose the default request status in the settings -
simple-feature-requests/trunk/simple-feature-requests.php
r2282410 r2283980 5 5 * Plugin URI: http://jckemp.com 6 6 * Description: Customer led feature requests with voting. 7 * Version: 2.1. 07 * Version: 2.1.1 8 8 * Author: James Kemp 9 9 * Author URI: https://jckemp.com 10 10 * Text Domain: simple-feature-requests 11 * Domain Path: /languages12 11 * 13 12 */ … … 25 24 * @var string 26 25 */ 27 public static $version = "2.1. 0" ;26 public static $version = "2.1.1" ; 28 27 /** 29 28 * Full name
Note: See TracChangeset
for help on using the changeset viewer.