Export User Data - Version 0.9.2

Version Description

  • removed $key assignment casting to integer
Download this release

Release Info

Developer qlstudio
Plugin Icon wp plugin Export User Data
Version 0.9.2
Comparing to
See all releases

Code changes from version 0.9.1 to 0.9.2

Files changed (3) hide show
  1. export-user-data.php +4 -3
  2. readme.md +4 -1
  3. readme.txt +4 -1
export-user-data.php CHANGED
@@ -4,7 +4,7 @@
4
  Plugin Name: Export User Data
5
  Plugin URI: http://qstudio.us/plugins/
6
  Description: Export User data, metadata and BuddyPressX Profile data.
7
- Version: 0.9.1
8
  Author: Q Studio
9
  Author URI: http://qstudio.us
10
  License: GPL2
@@ -573,8 +573,9 @@ if ( ! class_exists( 'Q_Export_User_Data' ) )
573
  if ( strpos( $key, $drop ) !== false ) {
574
 
575
  #echo 'FOUND -- '.$drop.' in '.$key.'<br />';
576
-
577
- if(($key = array_search($key, $meta_keys)) !== false) {
 
578
 
579
  $usermeta_class = 'system';
580
 
4
  Plugin Name: Export User Data
5
  Plugin URI: http://qstudio.us/plugins/
6
  Description: Export User data, metadata and BuddyPressX Profile data.
7
+ Version: 0.9.2
8
  Author: Q Studio
9
  Author URI: http://qstudio.us
10
  License: GPL2
573
  if ( strpos( $key, $drop ) !== false ) {
574
 
575
  #echo 'FOUND -- '.$drop.' in '.$key.'<br />';
576
+ // https://wordpress.org/support/topic/bugfix-numbers-in-export-headers?replies=1
577
+ // removed $key = assignment, as not required ##
578
+ if(( array_search($key, $meta_keys)) !== false ) {
579
 
580
  $usermeta_class = 'system';
581
 
readme.md CHANGED
@@ -3,7 +3,7 @@
3
  **Tags:** user, users, xprofile, usermeta csv, excel, batch, export, save, download
4
  **Requires at least:** 3.2
5
  **Tested up to:** 3.9.0
6
- **Stable tag:** 0.9.1
7
  **License:** GPLv2
8
 
9
  Export users data, metadata and buddypress xprofile data to a csv or Excel file
@@ -59,6 +59,9 @@ Click on the 'Export User Data' link in the 'Users' menu, choose the role and th
59
 
60
  ## Changelog ##
61
 
 
 
 
62
  ### 0.9.1 ###
63
  * Tested with WP 3.9
64
  * Fix for BuddyPress 2.0 bug
3
  **Tags:** user, users, xprofile, usermeta csv, excel, batch, export, save, download
4
  **Requires at least:** 3.2
5
  **Tested up to:** 3.9.0
6
+ **Stable tag:** 0.9.2
7
  **License:** GPLv2
8
 
9
  Export users data, metadata and buddypress xprofile data to a csv or Excel file
59
 
60
  ## Changelog ##
61
 
62
+ ### 0.9.2 ###
63
+ * removed $key assignment casting to integer
64
+
65
  ### 0.9.1 ###
66
  * Tested with WP 3.9
67
  * Fix for BuddyPress 2.0 bug
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: qlstudio
3
  Tags: user, users, xprofile, usermeta csv, excel, batch, export, save, download
4
  Requires at least: 3.2
5
  Tested up to: 3.9.0
6
- Stable tag: 0.9.1
7
  License: GPLv2
8
 
9
  Export users data, metadata and buddypress xprofile data to a csv or Excel file
@@ -58,6 +58,9 @@ Click on the 'Export User Data' link in the 'Users' menu, choose the role and th
58
 
59
  == Changelog ==
60
 
 
 
 
61
  = 0.9.1 =
62
  * Tested with WP 3.9
63
  * Fix for BuddyPress 2.0 bug
3
  Tags: user, users, xprofile, usermeta csv, excel, batch, export, save, download
4
  Requires at least: 3.2
5
  Tested up to: 3.9.0
6
+ Stable tag: 0.9.2
7
  License: GPLv2
8
 
9
  Export users data, metadata and buddypress xprofile data to a csv or Excel file
58
 
59
  == Changelog ==
60
 
61
+ = 0.9.2 =
62
+ * removed $key assignment casting to integer
63
+
64
  = 0.9.1 =
65
  * Tested with WP 3.9
66
  * Fix for BuddyPress 2.0 bug