Bulk Delete - Version 5.0.1

Version Description

Fix delete users. Note: This version is only compatible with addons above v0.5

Download this release

Release Info

Developer sudar
Plugin Icon 128x128 Bulk Delete
Version 5.0.1
Comparing to
See all releases

Code changes from version 5.0 to 5.0.1

bulk-delete.php CHANGED
@@ -5,7 +5,7 @@ Plugin Script: bulk-delete.php
5
  Plugin URI: http://bulkwp.com
6
  Description: Bulk delete users and posts from selected categories, tags, post types, custom taxonomies or by post status like drafts, scheduled posts, revisions etc.
7
  Donate Link: http://sudarmuthu.com/if-you-wanna-thank-me
8
- Version: 5.0
9
  License: GPL
10
  Author: Sudar
11
  Author URI: http://sudarmuthu.com/
@@ -36,7 +36,7 @@ Check readme file for full release notes
36
  * @package Bulk_Delete
37
  * @subpackage core
38
  * @author Sudar
39
- * @version 5.0
40
  */
41
 
42
  // Exit if accessed directly
@@ -56,7 +56,7 @@ final class Bulk_Delete {
56
  */
57
  private static $instance;
58
 
59
- const VERSION = '5.0';
60
 
61
  // page slugs
62
  const POSTS_PAGE_SLUG = 'bulk-delete-posts';
5
  Plugin URI: http://bulkwp.com
6
  Description: Bulk delete users and posts from selected categories, tags, post types, custom taxonomies or by post status like drafts, scheduled posts, revisions etc.
7
  Donate Link: http://sudarmuthu.com/if-you-wanna-thank-me
8
+ Version: 5.0.1
9
  License: GPL
10
  Author: Sudar
11
  Author URI: http://sudarmuthu.com/
36
  * @package Bulk_Delete
37
  * @subpackage core
38
  * @author Sudar
39
+ * @version 5.0.1
40
  */
41
 
42
  // Exit if accessed directly
56
  */
57
  private static $instance;
58
 
59
+ const VERSION = '5.0.1';
60
 
61
  // page slugs
62
  const POSTS_PAGE_SLUG = 'bulk-delete-posts';
include/class-bulk-delete-users.php CHANGED
@@ -209,5 +209,5 @@ class Bulk_Delete_Users {
209
  }
210
  }
211
 
212
- add_action( 'bd_delete_users_by_role', array( 'Bulk_Delete_Users', 'process_deleting_users_by_role' ) );
213
  ?>
209
  }
210
  }
211
 
212
+ add_action( 'bd_delete_users_by_role', array( 'Bulk_Delete_Users', 'do_delete_users_by_role' ) );
213
  ?>
languages/bulk-delete.pot CHANGED
@@ -2,9 +2,9 @@
2
  # This file is distributed under the same license as the Bulk Delete package.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Bulk Delete 5.0\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/bulk-delete\n"
7
- "POT-Creation-Date: 2014-06-10 15:05:38+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
@@ -16,7 +16,7 @@ msgstr ""
16
  msgid "Cheatin’ huh?"
17
  msgstr ""
18
 
19
- #. #-#-#-#-# bulk-delete.pot (Bulk Delete 5.0) #-#-#-#-#
20
  #. Plugin Name of the plugin/theme
21
  #: bulk-delete.php:238
22
  msgid "Bulk Delete"
2
  # This file is distributed under the same license as the Bulk Delete package.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Bulk Delete 5.0.1\n"
6
  "Report-Msgid-Bugs-To: http://wordpress.org/tag/bulk-delete\n"
7
+ "POT-Creation-Date: 2014-06-11 02:49:15+00:00\n"
8
  "MIME-Version: 1.0\n"
9
  "Content-Type: text/plain; charset=UTF-8\n"
10
  "Content-Transfer-Encoding: 8bit\n"
16
  msgid "Cheatin’ huh?"
17
  msgstr ""
18
 
19
+ #. #-#-#-#-# bulk-delete.pot (Bulk Delete 5.0.1) #-#-#-#-#
20
  #. Plugin Name of the plugin/theme
21
  #: bulk-delete.php:238
22
  msgid "Bulk Delete"
readme.txt CHANGED
@@ -4,7 +4,7 @@ Tags: post, comment, delete, bulk, mass, draft, revision, page
4
  Requires at least: 3.8
5
  Tested up to: 3.9.1
6
  Donate Link: http://sudarmuthu.com/if-you-wanna-thank-me
7
- Stable tag: 5.0
8
 
9
  Bulk delete posts, pages or users in bulk based on different conditions and filters.
10
 
@@ -241,7 +241,10 @@ You can contact us by posting about it in our [support forum](http://bulkwp.com/
241
  This Readme file was generated using <a href = 'http://sudarmuthu.com/wordpress/wp-readme'>wp-readme</a>, which generates readme files for WordPress Plugins.
242
  == Changelog ==
243
 
244
- = 2014-04-26 - v5.0 - (Dev time: 30 hours) =
 
 
 
245
  - New: Add the ability to delete posts by duplicate title (#56)
246
  - Tweak: Make Bulk_Delete class singleton
247
  - Tweak: Move all deprecated functions and code to a separate file
@@ -423,6 +426,9 @@ This Readme file was generated using <a href = 'http://sudarmuthu.com/wordpress/
423
 
424
  == Upgrade Notice ==
425
 
 
 
 
426
  = 5.0 =
427
  This version is only compatible with addons above v0.5
428
 
4
  Requires at least: 3.8
5
  Tested up to: 3.9.1
6
  Donate Link: http://sudarmuthu.com/if-you-wanna-thank-me
7
+ Stable tag: 5.0.1
8
 
9
  Bulk delete posts, pages or users in bulk based on different conditions and filters.
10
 
241
  This Readme file was generated using <a href = 'http://sudarmuthu.com/wordpress/wp-readme'>wp-readme</a>, which generates readme files for WordPress Plugins.
242
  == Changelog ==
243
 
244
+ = 2014-04-26 - v5.0.1 - (Dev time: 1 hours) =
245
+ - Fix: Deleting users had as issue that was introduced in v5.0
246
+
247
+ = 2014-06-10 - v5.0 - (Dev time: 60 hours) =
248
  - New: Add the ability to delete posts by duplicate title (#56)
249
  - Tweak: Make Bulk_Delete class singleton
250
  - Tweak: Move all deprecated functions and code to a separate file
426
 
427
  == Upgrade Notice ==
428
 
429
+ = 5.0.1 =
430
+ Fix delete users. Note: This version is only compatible with addons above v0.5
431
+
432
  = 5.0 =
433
  This version is only compatible with addons above v0.5
434