Export Users to CSV - Version 1.0.0

Version Description

Download this release

Release Info

Developer sorich87
Plugin Icon 128x128 Export Users to CSV
Version 1.0.0
Comparing to
See all releases

Code changes from version 0.3 to 1.0.0

Files changed (2) hide show
  1. export-users-to-csv.php +6 -6
  2. readme.txt +2 -2
export-users-to-csv.php CHANGED
@@ -1,15 +1,15 @@
1
  <?php
2
  /**
3
  * @package Export_Users_to_CSV
4
- * @version 0.3
5
  */
6
  /*
7
  Plugin Name: Export Users to CSV
8
- Plugin URI: http://pubpoet.com/plugins/
9
  Description: Export Users data and metadata to a csv file.
10
- Version: 0.3
11
- Author: PubPoet
12
- Author URI: http://pubpoet.com/
13
  License: GPL2
14
  Text Domain: export-users-to-csv
15
  */
@@ -110,7 +110,7 @@ class PP_EU_Export_Users {
110
  if ( in_array( $field, $exclude_data ) )
111
  unset( $fields[$key] );
112
  else
113
- $headers[] = '"' . $field . '"';
114
  }
115
  echo implode( ',', $headers ) . "\n";
116
 
1
  <?php
2
  /**
3
  * @package Export_Users_to_CSV
4
+ * @version 1.0.0
5
  */
6
  /*
7
  Plugin Name: Export Users to CSV
8
+ Plugin URI: http://wordpress.org/extend/plugins/export-users-to-csv/
9
  Description: Export Users data and metadata to a csv file.
10
+ Version: 1.0.0
11
+ Author: Ulrich Sossou
12
+ Author URI: http://ulrichsossou.com/
13
  License: GPL2
14
  Text Domain: export-users-to-csv
15
  */
110
  if ( in_array( $field, $exclude_data ) )
111
  unset( $fields[$key] );
112
  else
113
+ $headers[] = '"' . strtolower( $field ) . '"';
114
  }
115
  echo implode( ',', $headers ) . "\n";
116
 
readme.txt CHANGED
@@ -2,8 +2,8 @@
2
  Contributors: sorich87
3
  Tags: user, users, csv, batch, export, exporter, admin
4
  Requires at least: 3.2
5
- Tested up to: 3.3
6
- Stable tag: 0.3
7
 
8
  Export users data and metadata to a csv file
9
 
2
  Contributors: sorich87
3
  Tags: user, users, csv, batch, export, exporter, admin
4
  Requires at least: 3.2
5
+ Tested up to: 3.8
6
+ Stable tag: 1.0.0
7
 
8
  Export users data and metadata to a csv file
9