diff --git a/README.md b/README.md index 6d6de68..671a043 100644 --- a/README.md +++ b/README.md @@ -167,6 +167,6 @@ Requirements Support ------- -If you find any that needs fixing, or if you have any ideas for improvements, please submit a support ticket: +If you find anything that needs fixing, or if you have any ideas for improvements, please open a support ticket: https://www.gravityforms.com/open-support-ticket/ diff --git a/cli.php b/cli.php index 577a4b0..faa698d 100644 --- a/cli.php +++ b/cli.php @@ -3,7 +3,7 @@ Plugin Name: Gravity Forms CLI Plugin URI: http://www.gravityforms.com Description: Manage Gravity Forms with the WP CLI. -Version: 1.1 +Version: 1.1.1 Author: Rocketgenius Author URI: http://www.gravityforms.com License: GPL-2.0+ @@ -30,7 +30,7 @@ defined( 'ABSPATH' ) || die(); // Defines the current version of the CLI add-on -define( 'GF_CLI_VERSION', '1.1' ); +define( 'GF_CLI_VERSION', '1.1.1' ); define( 'GF_CLI_MIN_GF_VERSION', '1.9.17.8' ); diff --git a/includes/class-gf-cli-entry.php b/includes/class-gf-cli-entry.php index 023fba9..d5eb45a 100644 --- a/includes/class-gf-cli-entry.php +++ b/includes/class-gf-cli-entry.php @@ -931,7 +931,7 @@ private function export_entries_csv( $form, $filename, $search_criteria = array( $_POST['export_field'] = $fields; - $search_criteria['status'] = 'status'; + $search_criteria['status'] = 'active'; if ( isset( $search_criteria['start_date'] ) ) { $_POST['export_date_start'] = $search_criteria['start_date'];