Bulk Delete - Version 4.2.2

Version Description

Download this release

Release Info

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

Code changes from version 4.2.1 to 4.2.2

bulk-delete.php CHANGED
@@ -5,7 +5,7 @@ Plugin Script: bulk-delete.php
5
  Plugin URI: http://sudarmuthu.com/wordpress/bulk-delete
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: 4.2.1
9
  License: GPL
10
  Author: Sudar
11
  Author URI: http://sudarmuthu.com/
@@ -53,7 +53,7 @@ if ( !function_exists( 'array_get' ) ) {
53
  */
54
  class Bulk_Delete {
55
 
56
- const VERSION = '4.2.1';
57
 
58
  // page slugs
59
  const USERS_PAGE_SLUG = 'bulk-delete-users';
5
  Plugin URI: http://sudarmuthu.com/wordpress/bulk-delete
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: 4.2.2
9
  License: GPL
10
  Author: Sudar
11
  Author URI: http://sudarmuthu.com/
53
  */
54
  class Bulk_Delete {
55
 
56
+ const VERSION = '4.2.2';
57
 
58
  // page slugs
59
  const USERS_PAGE_SLUG = 'bulk-delete-users';
include/class-bulk-delete-util.php CHANGED
@@ -144,7 +144,7 @@ class Bulk_Delete_Util {
144
 
145
  if ( count( $str_arr ) > 1 ) {
146
  $type_status['status'] = end( $str_arr );
147
- $type_status['type'] = implode( '', array_slice( $str_arr, 0, -1 ) );
148
  } else {
149
  $type_status['status'] = 'publish';
150
  $type_status['type'] = $str;
144
 
145
  if ( count( $str_arr ) > 1 ) {
146
  $type_status['status'] = end( $str_arr );
147
+ $type_status['type'] = implode( '-', array_slice( $str_arr, 0, -1 ) );
148
  } else {
149
  $type_status['status'] = 'publish';
150
  $type_status['type'] = $str;
readme.txt CHANGED
@@ -4,7 +4,7 @@ Tags: post, comment, delete, bulk, mass, draft, revision, page
4
  Requires at least: 3.3
5
  Tested up to: 3.7.1
6
  Donate Link: http://sudarmuthu.com/if-you-wanna-thank-me
7
- Stable tag: 4.2.1
8
 
9
  Bulk delete users based on user role and posts from selected categories, tags, post types, custom taxonomies or by post status like drafts, scheduled posts, revisions etc.
10
 
4
  Requires at least: 3.3
5
  Tested up to: 3.7.1
6
  Donate Link: http://sudarmuthu.com/if-you-wanna-thank-me
7
+ Stable tag: 4.2.2
8
 
9
  Bulk delete users based on user role and posts from selected categories, tags, post types, custom taxonomies or by post status like drafts, scheduled posts, revisions etc.
10