Export User Data - Version 2.2.3

Version Description

  • New: WordPress Security release
Download this release

Release Info

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

Code changes from version 2.2.2 to 2.2.3

CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
  ## Changelog ##
2
 
3
- *** 2.2.2 ***
4
 
5
  * New: WordPress Security release
6
 
1
  ## Changelog ##
2
 
3
+ *** 2.2.3 ***
4
 
5
  * New: WordPress Security release
6
 
export-user-data.php CHANGED
@@ -12,7 +12,7 @@
12
  * Plugin Name: Export User Data
13
  * Plugin URI: http://qstudio.us/releases/export-user-data
14
  * Description: Export User data and metadata.
15
- * Version: 2.2.2
16
  * Author: Q Studio
17
  * Author URI: https://qstudio.us
18
  * License: GPL-2.0+
12
  * Plugin Name: Export User Data
13
  * Plugin URI: http://qstudio.us/releases/export-user-data
14
  * Description: Export User data and metadata.
15
+ * Version: 2.2.3
16
  * Author: Q Studio
17
  * Author URI: https://qstudio.us
18
  * License: GPL-2.0+
library/core/export.php CHANGED
@@ -559,8 +559,8 @@ class export {
559
  || is_object ( $value )
560
  ){
561
 
562
- helper::log( 'is_array || is_object' );
563
- helper::log( $value );
564
 
565
  // recursive implode it ##
566
  // $value = helper::recursive_implode( $value );
559
  || is_object ( $value )
560
  ){
561
 
562
+ // helper::log( 'is_array || is_object' );
563
+ // helper::log( $value );
564
 
565
  // recursive implode it ##
566
  // $value = helper::recursive_implode( $value );
library/core/get.php CHANGED
@@ -100,9 +100,9 @@ class get {
100
  /**
101
  * Export Date Options
102
  *
103
- * @since 0.9.6
104
- * @global type $wpdb
105
- * @return Array of objects
106
  * @todo Remove max date, as this makes little sense for exports not based on user reg dates.. ??
107
  */
108
  public static function user_registered_dates(){
100
  /**
101
  * Export Date Options
102
  *
103
+ * @since 0.9.6
104
+ * @global type $wpdb
105
+ * @return Array of objects
106
  * @todo Remove max date, as this makes little sense for exports not based on user reg dates.. ??
107
  */
108
  public static function user_registered_dates(){
library/core/helper.php CHANGED
@@ -176,7 +176,7 @@ class helper {
176
  && $value !== 'b:0;'
177
  ){
178
 
179
- h::log( $unserialized );
180
 
181
  #$value = 'UNSERIALIZED_'.$unserialized;
182
  $value = $unserialized;
176
  && $value !== 'b:0;'
177
  ){
178
 
179
+ // self::log( $unserialized );
180
 
181
  #$value = 'UNSERIALIZED_'.$unserialized;
182
  $value = $unserialized;
plugin.php CHANGED
@@ -27,7 +27,7 @@ final class plugin {
27
  public static
28
 
29
  // current tag ##
30
- $_version = '2.2.2',
31
 
32
  // debugging control ##
33
  $_debug = \WP_DEBUG
27
  public static
28
 
29
  // current tag ##
30
+ $_version = '2.2.3',
31
 
32
  // debugging control ##
33
  $_debug = \WP_DEBUG
readme.md CHANGED
@@ -5,7 +5,7 @@
5
  **Requires PHP:** 6.0
6
  **Requires at least:** 5.0
7
  **Tested up to:** 5.8.2
8
- **Stable tag:** 2.2.2
9
  **License:** GPLv2
10
 
11
  Export users data and metadata to a csv or Excel file
5
  **Requires PHP:** 6.0
6
  **Requires at least:** 5.0
7
  **Tested up to:** 5.8.2
8
+ **Stable tag:** 2.2.3
9
  **License:** GPLv2
10
 
11
  Export users data and metadata to a csv or Excel file
readme.txt CHANGED
@@ -4,7 +4,7 @@ Tags: users, export, usermeta, excel
4
  Requires PHP: 7.0
5
  Requires at least: 4.8
6
  Tested up to: 5.8.2
7
- Stable tag: 2.2.2
8
  License: GPLv2
9
 
10
  Export users data and metadata to a csv or Excel file
@@ -39,7 +39,7 @@ Please do not use the Wordpress.org forum to report bugs, as we no longer monito
39
 
40
  == Changelog ==
41
 
42
- = 2.2.2 =
43
 
44
  * New: WordPress Security release
45
 
4
  Requires PHP: 7.0
5
  Requires at least: 4.8
6
  Tested up to: 5.8.2
7
+ Stable tag: 2.2.3
8
  License: GPLv2
9
 
10
  Export users data and metadata to a csv or Excel file
39
 
40
  == Changelog ==
41
 
42
+ = 2.2.3 =
43
 
44
  * New: WordPress Security release
45