vendor/prospress/action-scheduler/classes/ActionScheduler_Abstract_ListTable.php 1 location
|
@@ 404-408 (lines=5) @@
|
401 |
|
|
402 |
|
$this->process_row_actions(); |
403 |
|
|
404 |
|
if ( ! empty( $_REQUEST['_wp_http_referer'] ) ) { |
405 |
|
// _wp_http_referer is used only on bulk actions, we remove it to keep the $_GET shorter |
406 |
|
wp_redirect( remove_query_arg( array( '_wp_http_referer', '_wpnonce' ), wp_unslash( $_SERVER['REQUEST_URI'] ) ) ); |
407 |
|
exit; |
408 |
|
} |
409 |
|
|
410 |
|
$this->prepare_column_headers(); |
411 |
|
|
vendor/prospress/action-scheduler/classes/ActionScheduler_ListTable.php 1 location
|
@@ 469-473 (lines=5) @@
|
466 |
|
|
467 |
|
$this->process_row_actions(); |
468 |
|
|
469 |
|
if ( ! empty( $_REQUEST['_wp_http_referer'] ) ) { |
470 |
|
// _wp_http_referer is used only on bulk actions, we remove it to keep the $_GET shorter |
471 |
|
wp_redirect( remove_query_arg( array( '_wp_http_referer', '_wpnonce' ), wp_unslash( $_SERVER['REQUEST_URI'] ) ) ); |
472 |
|
exit; |
473 |
|
} |
474 |
|
|
475 |
|
$this->prepare_column_headers(); |
476 |
|
|