Merge pull request #17946 from shivapoudel/fix/17919
Fix - Bulk action in status logs table
This commit is contained in:
commit
9a5e8b1db8
|
@ -115,7 +115,7 @@ class WC_Admin_Status {
|
||||||
}
|
}
|
||||||
|
|
||||||
// Bulk actions
|
// Bulk actions
|
||||||
if ( isset( $_GET['action'] ) && isset( $_GET['log'] ) ) {
|
if ( isset( $_REQUEST['action'] ) && isset( $_REQUEST['log'] ) ) {
|
||||||
self::log_table_bulk_actions();
|
self::log_table_bulk_actions();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -315,9 +315,9 @@ class WC_Admin_Status {
|
||||||
wp_die( __( 'Action failed. Please refresh the page and retry.', 'woocommerce' ) );
|
wp_die( __( 'Action failed. Please refresh the page and retry.', 'woocommerce' ) );
|
||||||
}
|
}
|
||||||
|
|
||||||
$log_ids = array_map( 'absint', (array) $_GET['log'] );
|
$log_ids = array_map( 'absint', (array) $_REQUEST['log'] );
|
||||||
|
|
||||||
if ( 'delete' === $_GET['action'] || 'delete' === $_GET['action2'] ) {
|
if ( 'delete' === $_REQUEST['action'] || 'delete' === $_REQUEST['action2'] ) {
|
||||||
WC_Log_Handler_DB::delete( $log_ids );
|
WC_Log_Handler_DB::delete( $log_ids );
|
||||||
wp_safe_redirect( esc_url_raw( admin_url( 'admin.php?page=wc-status&tab=logs' ) ) );
|
wp_safe_redirect( esc_url_raw( admin_url( 'admin.php?page=wc-status&tab=logs' ) ) );
|
||||||
exit();
|
exit();
|
||||||
|
|
Loading…
Reference in New Issue