mirror of
https://github.com/gosticks/wordpress-develop.git
synced 2026-07-08 03:00:14 +00:00
Coding Standards: Fix instances of Generic.WhiteSpace.ArbitraryParenthesesSpacing.FoundEmpty.
See #49542. git-svn-id: https://develop.svn.wordpress.org/trunk@47855 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
@@ -123,7 +123,7 @@ if ( isset( $_GET['action'] ) ) {
|
||||
</div>
|
||||
<?php
|
||||
require_once ABSPATH . 'wp-admin/admin-footer.php';
|
||||
exit();
|
||||
exit;
|
||||
} elseif ( array_key_exists( $_GET['action'], $manage_actions ) ) {
|
||||
$action = $_GET['action'];
|
||||
check_admin_referer( $action . '_' . $id );
|
||||
@@ -210,7 +210,7 @@ if ( isset( $_GET['action'] ) ) {
|
||||
</div>
|
||||
<?php
|
||||
require_once ABSPATH . 'wp-admin/admin-footer.php';
|
||||
exit();
|
||||
exit;
|
||||
break;
|
||||
|
||||
case 'spam':
|
||||
@@ -232,7 +232,7 @@ if ( isset( $_GET['action'] ) ) {
|
||||
$redirect_to = apply_filters( 'handle_network_bulk_actions-' . get_current_screen()->id, $redirect_to, $doaction, $blogs, $id ); // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores
|
||||
|
||||
wp_safe_redirect( $redirect_to );
|
||||
exit();
|
||||
exit;
|
||||
}
|
||||
} else {
|
||||
// Process query defined by WP_MS_Site_List_Table::extra_table_nav().
|
||||
@@ -295,7 +295,7 @@ if ( isset( $_GET['action'] ) ) {
|
||||
|
||||
if ( ! empty( $updated_action ) ) {
|
||||
wp_safe_redirect( add_query_arg( array( 'updated' => $updated_action ), wp_get_referer() ) );
|
||||
exit();
|
||||
exit;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user