Plugin Directory

Changeset 2283980


Ignore:
Timestamp:
04/15/2020 10:21:01 AM (6 years ago)
Author:
jamesckemp
Message:

Uploading 2.1.1

Location:
simple-feature-requests/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • simple-feature-requests/trunk/inc/class-post-types.php

    r2282410 r2283980  
    103103       
    104104        if ( empty($simple_feature_requests_class) ) {
    105             $archive_page_id = false;
     105            $archive_page_id = null;
    106106        } else {
    107107            $archive_page_id = absint( $simple_feature_requests_class->settings->get_setting( 'general_setup_archive_page_id' ) );
    108108        }
    109109       
     110        $archive_page_id = ( empty($archive_page_id) ? null : $archive_page_id );
    110111        $archive_page_id = apply_filters( 'jck_sfr_archive_page_id', $archive_page_id );
    111112        return $archive_page_id;
  • simple-feature-requests/trunk/plugin-data.json

    r2282410 r2283980  
    11{
    2   "version": "2.1.0",
     2  "version": "2.1.1",
    33  "wp": "5.4",
    44  "wp_requires": "4.9",
  • simple-feature-requests/trunk/readme.txt

    r2282410 r2283980  
    22Contributors: jamesckemp
    33Donate link:
    4 Tags: features, feature request, feature requests, uservoice, vote, votes, user voice, community, feedback
    5 Requires at least: 4.0
     4Tags: feature requests, uservoice, canny, votes, feedback
     5Requires at least: 4.9
    66Tested up to: 5.4
    7 Stable tag: trunk
     7Stable tag: 2.1.1
    88Requires PHP: 5.4
    99License: GPLv2 or later
     
    103103== Changelog ==
    104104
     105**v2.1.1** (2020-04-15)
     106[fix] Ensure archive ID isn't cached to 0
     107
    105108**v2.1.0** (2020-04-13)
    106109[new] Choose the default request status in the settings
  • simple-feature-requests/trunk/simple-feature-requests.php

    r2282410 r2283980  
    55 * Plugin URI: http://jckemp.com
    66 * Description: Customer led feature requests with voting.
    7  * Version: 2.1.0
     7 * Version: 2.1.1
    88 * Author: James Kemp
    99 * Author URI: https://jckemp.com
    1010 * Text Domain: simple-feature-requests
    11  * Domain Path: /languages
    1211 *
    1312 */
     
    2524     * @var string
    2625     */
    27     public static  $version = "2.1.0" ;
     26    public static  $version = "2.1.1" ;
    2827    /**
    2928     * Full name
Note: See TracChangeset for help on using the changeset viewer.