Skip to content

Commit 683969b

Browse files
authored
Fix entry export status (#21)
* Fix entry export status * Revert "Fix entry export status" This reverts commit 59d6509. * Fix entry status in search criteria * Bump version; fix typo in readme
1 parent 05c4076 commit 683969b

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,6 +167,6 @@ Requirements
167167
Support
168168
-------
169169

170-
If you find any that needs fixing, or if you have any ideas for improvements, please submit a support ticket:
170+
If you find anything that needs fixing, or if you have any ideas for improvements, please open a support ticket:
171171
https://www.gravityforms.com/open-support-ticket/
172172

cli.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Plugin Name: Gravity Forms CLI
44
Plugin URI: http://www.gravityforms.com
55
Description: Manage Gravity Forms with the WP CLI.
6-
Version: 1.1
6+
Version: 1.1.1
77
Author: Rocketgenius
88
Author URI: http://www.gravityforms.com
99
License: GPL-2.0+
@@ -30,7 +30,7 @@
3030
defined( 'ABSPATH' ) || die();
3131

3232
// Defines the current version of the CLI add-on
33-
define( 'GF_CLI_VERSION', '1.1' );
33+
define( 'GF_CLI_VERSION', '1.1.1' );
3434

3535
define( 'GF_CLI_MIN_GF_VERSION', '1.9.17.8' );
3636

includes/class-gf-cli-entry.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -931,7 +931,7 @@ private function export_entries_csv( $form, $filename, $search_criteria = array(
931931

932932
$_POST['export_field'] = $fields;
933933

934-
$search_criteria['status'] = 'status';
934+
$search_criteria['status'] = 'active';
935935

936936
if ( isset( $search_criteria['start_date'] ) ) {
937937
$_POST['export_date_start'] = $search_criteria['start_date'];

0 commit comments

Comments
 (0)