@@ -8,9 +8,9 @@ |
||
8 | 8 | * @subpackage Administration |
9 | 9 | */ |
10 | 10 | |
11 | -wp_reset_vars( array( 'action' ) ); |
|
11 | +wp_reset_vars(array('action')); |
|
12 | 12 | |
13 | -if ( isset( $_GET['updated'] ) && isset( $_GET['page'] ) ) { |
|
13 | +if (isset($_GET['updated']) && isset($_GET['page'])) { |
|
14 | 14 | // For backwards compat with plugins that don't use the Settings API and just set updated=1 in the redirect |
15 | 15 | add_settings_error('general', 'settings_updated', __('Settings saved.'), 'updated'); |
16 | 16 | } |
@@ -7,6 +7,6 @@ |
||
7 | 7 | * @package WordPress |
8 | 8 | * @subpackage Administration |
9 | 9 | */ |
10 | -require_once( dirname( dirname( __FILE__ ) ) . '/wp-load.php' ); |
|
11 | -wp_redirect( admin_url('edit-comments.php?comment_status=moderated') ); |
|
10 | +require_once(dirname(dirname(__FILE__)).'/wp-load.php'); |
|
11 | +wp_redirect(admin_url('edit-comments.php?comment_status=moderated')); |
|
12 | 12 | exit; |
@@ -130,18 +130,20 @@ |
||
130 | 130 | if ( $problems ) { |
131 | 131 | printf( '<p>' . __('Some database problems could not be repaired. Please copy-and-paste the following list of errors to the <a href="%s">WordPress support forums</a> to get additional assistance.') . '</p>', __( 'https://wordpress.org/support/forum/how-to-and-troubleshooting' ) ); |
132 | 132 | $problem_output = ''; |
133 | - foreach ( $problems as $table => $problem ) |
|
134 | - $problem_output .= "$table: $problem\n"; |
|
133 | + foreach ( $problems as $table => $problem ) { |
|
134 | + $problem_output .= "$table: $problem\n"; |
|
135 | + } |
|
135 | 136 | echo '<p><textarea name="errors" id="errors" rows="20" cols="60">' . esc_textarea( $problem_output ) . '</textarea></p>'; |
136 | 137 | } else { |
137 | 138 | echo '<p>' . __( 'Repairs complete. Please remove the following line from wp-config.php to prevent this page from being used by unauthorized users.' ) . "</p><p><code>define('WP_ALLOW_REPAIR', true);</code></p>"; |
138 | 139 | } |
139 | 140 | } else { |
140 | - if ( isset( $_GET['referrer'] ) && 'is_blog_installed' == $_GET['referrer'] ) |
|
141 | - echo '<p>' . __( 'One or more database tables are unavailable. To allow WordPress to attempt to repair these tables, press the “Repair Database” button. Repairing can take a while, so please be patient.' ) . '</p>'; |
|
142 | - else |
|
143 | - echo '<p>' . __( 'WordPress can automatically look for some common database problems and repair them. Repairing can take a while, so please be patient.' ) . '</p>'; |
|
144 | -?> |
|
141 | + if ( isset( $_GET['referrer'] ) && 'is_blog_installed' == $_GET['referrer'] ) { |
|
142 | + echo '<p>' . __( 'One or more database tables are unavailable. To allow WordPress to attempt to repair these tables, press the “Repair Database” button. Repairing can take a while, so please be patient.' ) . '</p>'; |
|
143 | + } else { |
|
144 | + echo '<p>' . __( 'WordPress can automatically look for some common database problems and repair them. Repairing can take a while, so please be patient.' ) . '</p>'; |
|
145 | + } |
|
146 | + ?> |
|
145 | 147 | <p class="step"><a class="button button-large" href="repair.php?repair=1"><?php _e( 'Repair Database' ); ?></a></p> |
146 | 148 | <p><?php _e( 'WordPress can also attempt to optimize the database. This improves performance in some situations. Repairing and optimizing the database can take a long time and the database will be locked while optimizing.' ); ?></p> |
147 | 149 | <p class="step"><a class="button button-large" href="repair.php?repair=2"><?php _e( 'Repair and Optimize Database' ); ?></a></p> |
@@ -7,9 +7,9 @@ discard block |
||
7 | 7 | */ |
8 | 8 | define('WP_REPAIRING', true); |
9 | 9 | |
10 | -require_once( dirname( dirname( dirname( __FILE__ ) ) ) . '/wp-load.php' ); |
|
10 | +require_once(dirname(dirname(dirname(__FILE__))).'/wp-load.php'); |
|
11 | 11 | |
12 | -header( 'Content-Type: text/html; charset=utf-8' ); |
|
12 | +header('Content-Type: text/html; charset=utf-8'); |
|
13 | 13 | ?> |
14 | 14 | <!DOCTYPE html> |
15 | 15 | <html xmlns="http://www.w3.org/1999/xhtml" <?php language_attributes(); ?>> |
@@ -17,24 +17,24 @@ discard block |
||
17 | 17 | <meta name="viewport" content="width=device-width" /> |
18 | 18 | <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> |
19 | 19 | <meta name="robots" content="noindex,nofollow" /> |
20 | - <title><?php _e( 'WordPress › Database Repair' ); ?></title> |
|
20 | + <title><?php _e('WordPress › Database Repair'); ?></title> |
|
21 | 21 | <?php |
22 | - wp_admin_css( 'install', true ); |
|
22 | + wp_admin_css('install', true); |
|
23 | 23 | ?> |
24 | 24 | </head> |
25 | 25 | <body class="wp-core-ui"> |
26 | -<p id="logo"><a href="<?php echo esc_url( __( 'https://wordpress.org/' ) ); ?>" tabindex="-1"><?php _e( 'WordPress' ); ?></a></p> |
|
26 | +<p id="logo"><a href="<?php echo esc_url(__('https://wordpress.org/')); ?>" tabindex="-1"><?php _e('WordPress'); ?></a></p> |
|
27 | 27 | |
28 | 28 | <?php |
29 | 29 | |
30 | -if ( ! defined( 'WP_ALLOW_REPAIR' ) ) { |
|
30 | +if ( ! defined('WP_ALLOW_REPAIR')) { |
|
31 | 31 | |
32 | - echo '<h1 class="screen-reader-text">' . __( 'Allow automatic database repair' ) . '</h1>'; |
|
32 | + echo '<h1 class="screen-reader-text">'.__('Allow automatic database repair').'</h1>'; |
|
33 | 33 | |
34 | 34 | echo '<p>'; |
35 | 35 | printf( |
36 | 36 | /* translators: %s: File name. */ |
37 | - __( 'To allow use of this page to automatically repair database problems, please add the following line to your %s file. Once this line is added to your config, reload this page.' ), |
|
37 | + __('To allow use of this page to automatically repair database problems, please add the following line to your %s file. Once this line is added to your config, reload this page.'), |
|
38 | 38 | '<code>wp-config.php</code>' |
39 | 39 | ); |
40 | 40 | echo "</p><p><code>define('WP_ALLOW_REPAIR', true);</code></p>"; |
@@ -43,10 +43,10 @@ discard block |
||
43 | 43 | $missing_key = false; |
44 | 44 | $duplicated_keys = array(); |
45 | 45 | |
46 | - foreach ( array( 'AUTH_KEY', 'SECURE_AUTH_KEY', 'LOGGED_IN_KEY', 'NONCE_KEY', 'AUTH_SALT', 'SECURE_AUTH_SALT', 'LOGGED_IN_SALT', 'NONCE_SALT' ) as $key ) { |
|
47 | - if ( defined( $key ) ) { |
|
46 | + foreach (array('AUTH_KEY', 'SECURE_AUTH_KEY', 'LOGGED_IN_KEY', 'NONCE_KEY', 'AUTH_SALT', 'SECURE_AUTH_SALT', 'LOGGED_IN_SALT', 'NONCE_SALT') as $key) { |
|
47 | + if (defined($key)) { |
|
48 | 48 | // Check for unique values of each key. |
49 | - $duplicated_keys[ constant( $key ) ] = isset( $duplicated_keys[ constant( $key ) ] ); |
|
49 | + $duplicated_keys[constant($key)] = isset($duplicated_keys[constant($key)]); |
|
50 | 50 | } else { |
51 | 51 | // If a constant is not defined, it's missing. |
52 | 52 | $missing_key = true; |
@@ -54,24 +54,24 @@ discard block |
||
54 | 54 | } |
55 | 55 | |
56 | 56 | // If at least one key uses the default value, consider it duplicated. |
57 | - if ( isset( $duplicated_keys[ $default_key ] ) ) { |
|
58 | - $duplicated_keys[ $default_key ] = true; |
|
57 | + if (isset($duplicated_keys[$default_key])) { |
|
58 | + $duplicated_keys[$default_key] = true; |
|
59 | 59 | } |
60 | 60 | |
61 | 61 | // Weed out all unique, non-default values. |
62 | - $duplicated_keys = array_filter( $duplicated_keys ); |
|
62 | + $duplicated_keys = array_filter($duplicated_keys); |
|
63 | 63 | |
64 | - if ( $duplicated_keys || $missing_key ) { |
|
64 | + if ($duplicated_keys || $missing_key) { |
|
65 | 65 | |
66 | - echo '<h2 class="screen-reader-text">' . __( 'Check secret keys' ) . '</h2>'; |
|
66 | + echo '<h2 class="screen-reader-text">'.__('Check secret keys').'</h2>'; |
|
67 | 67 | |
68 | 68 | // Translators: 1: wp-config.php; 2: Secret key service URL. |
69 | - echo '<p>' . sprintf( __( 'While you are editing your %1$s file, take a moment to make sure you have all 8 keys and that they are unique. You can generate these using the <a href="%2$s">WordPress.org secret key service</a>.' ), '<code>wp-config.php</code>', 'https://api.wordpress.org/secret-key/1.1/salt/' ) . '</p>'; |
|
69 | + echo '<p>'.sprintf(__('While you are editing your %1$s file, take a moment to make sure you have all 8 keys and that they are unique. You can generate these using the <a href="%2$s">WordPress.org secret key service</a>.'), '<code>wp-config.php</code>', 'https://api.wordpress.org/secret-key/1.1/salt/').'</p>'; |
|
70 | 70 | } |
71 | 71 | |
72 | -} elseif ( isset( $_GET['repair'] ) ) { |
|
72 | +} elseif (isset($_GET['repair'])) { |
|
73 | 73 | |
74 | - echo '<h1 class="screen-reader-text">' . __( 'Database repair results' ) . '</h1>'; |
|
74 | + echo '<h1 class="screen-reader-text">'.__('Database repair results').'</h1>'; |
|
75 | 75 | |
76 | 76 | $optimize = 2 == $_GET['repair']; |
77 | 77 | $okay = true; |
@@ -80,9 +80,9 @@ discard block |
||
80 | 80 | $tables = $wpdb->tables(); |
81 | 81 | |
82 | 82 | // Sitecategories may not exist if global terms are disabled. |
83 | - $query = $wpdb->prepare( "SHOW TABLES LIKE %s", $wpdb->esc_like( $wpdb->sitecategories ) ); |
|
84 | - if ( is_multisite() && ! $wpdb->get_var( $query ) ) { |
|
85 | - unset( $tables['sitecategories'] ); |
|
83 | + $query = $wpdb->prepare("SHOW TABLES LIKE %s", $wpdb->esc_like($wpdb->sitecategories)); |
|
84 | + if (is_multisite() && ! $wpdb->get_var($query)) { |
|
85 | + unset($tables['sitecategories']); |
|
86 | 86 | } |
87 | 87 | |
88 | 88 | /** |
@@ -92,78 +92,78 @@ discard block |
||
92 | 92 | * |
93 | 93 | * @param array $tables Array of prefixed table names to be repaired. |
94 | 94 | */ |
95 | - $tables = array_merge( $tables, (array) apply_filters( 'tables_to_repair', array() ) ); |
|
95 | + $tables = array_merge($tables, (array) apply_filters('tables_to_repair', array())); |
|
96 | 96 | |
97 | 97 | // Loop over the tables, checking and repairing as needed. |
98 | - foreach ( $tables as $table ) { |
|
99 | - $check = $wpdb->get_row( "CHECK TABLE $table" ); |
|
98 | + foreach ($tables as $table) { |
|
99 | + $check = $wpdb->get_row("CHECK TABLE $table"); |
|
100 | 100 | |
101 | 101 | echo '<p>'; |
102 | - if ( 'OK' == $check->Msg_text ) { |
|
102 | + if ('OK' == $check->Msg_text) { |
|
103 | 103 | /* translators: %s: table name */ |
104 | - printf( __( 'The %s table is okay.' ), "<code>$table</code>" ); |
|
104 | + printf(__('The %s table is okay.'), "<code>$table</code>"); |
|
105 | 105 | } else { |
106 | 106 | /* translators: 1: table name, 2: error message, */ |
107 | - printf( __( 'The %1$s table is not okay. It is reporting the following error: %2$s. WordPress will attempt to repair this table…' ) , "<code>$table</code>", "<code>$check->Msg_text</code>" ); |
|
107 | + printf(__('The %1$s table is not okay. It is reporting the following error: %2$s. WordPress will attempt to repair this table…'), "<code>$table</code>", "<code>$check->Msg_text</code>"); |
|
108 | 108 | |
109 | - $repair = $wpdb->get_row( "REPAIR TABLE $table" ); |
|
109 | + $repair = $wpdb->get_row("REPAIR TABLE $table"); |
|
110 | 110 | |
111 | 111 | echo '<br /> '; |
112 | - if ( 'OK' == $check->Msg_text ) { |
|
112 | + if ('OK' == $check->Msg_text) { |
|
113 | 113 | /* translators: %s: table name */ |
114 | - printf( __( 'Successfully repaired the %s table.' ), "<code>$table</code>" ); |
|
114 | + printf(__('Successfully repaired the %s table.'), "<code>$table</code>"); |
|
115 | 115 | } else { |
116 | 116 | /* translators: 1: table name, 2: error message, */ |
117 | - echo sprintf( __( 'Failed to repair the %1$s table. Error: %2$s' ), "<code>$table</code>", "<code>$check->Msg_text</code>" ) . '<br />'; |
|
117 | + echo sprintf(__('Failed to repair the %1$s table. Error: %2$s'), "<code>$table</code>", "<code>$check->Msg_text</code>").'<br />'; |
|
118 | 118 | $problems[$table] = $check->Msg_text; |
119 | 119 | $okay = false; |
120 | 120 | } |
121 | 121 | } |
122 | 122 | |
123 | - if ( $okay && $optimize ) { |
|
124 | - $check = $wpdb->get_row( "ANALYZE TABLE $table" ); |
|
123 | + if ($okay && $optimize) { |
|
124 | + $check = $wpdb->get_row("ANALYZE TABLE $table"); |
|
125 | 125 | |
126 | 126 | echo '<br /> '; |
127 | - if ( 'Table is already up to date' == $check->Msg_text ) { |
|
127 | + if ('Table is already up to date' == $check->Msg_text) { |
|
128 | 128 | /* translators: %s: table name */ |
129 | - printf( __( 'The %s table is already optimized.' ), "<code>$table</code>" ); |
|
129 | + printf(__('The %s table is already optimized.'), "<code>$table</code>"); |
|
130 | 130 | } else { |
131 | - $check = $wpdb->get_row( "OPTIMIZE TABLE $table" ); |
|
131 | + $check = $wpdb->get_row("OPTIMIZE TABLE $table"); |
|
132 | 132 | |
133 | 133 | echo '<br /> '; |
134 | - if ( 'OK' == $check->Msg_text || 'Table is already up to date' == $check->Msg_text ) { |
|
134 | + if ('OK' == $check->Msg_text || 'Table is already up to date' == $check->Msg_text) { |
|
135 | 135 | /* translators: %s: table name */ |
136 | - printf( __( 'Successfully optimized the %s table.' ), "<code>$table</code>" ); |
|
136 | + printf(__('Successfully optimized the %s table.'), "<code>$table</code>"); |
|
137 | 137 | } else { |
138 | 138 | /* translators: 1: table name, 2: error message, */ |
139 | - printf( __( 'Failed to optimize the %1$s table. Error: %2$s' ), "<code>$table</code>", "<code>$check->Msg_text</code>" ); |
|
139 | + printf(__('Failed to optimize the %1$s table. Error: %2$s'), "<code>$table</code>", "<code>$check->Msg_text</code>"); |
|
140 | 140 | } |
141 | 141 | } |
142 | 142 | } |
143 | 143 | echo '</p>'; |
144 | 144 | } |
145 | 145 | |
146 | - if ( $problems ) { |
|
147 | - printf( '<p>' . __('Some database problems could not be repaired. Please copy-and-paste the following list of errors to the <a href="%s">WordPress support forums</a> to get additional assistance.') . '</p>', __( 'https://wordpress.org/support/forum/how-to-and-troubleshooting' ) ); |
|
146 | + if ($problems) { |
|
147 | + printf('<p>'.__('Some database problems could not be repaired. Please copy-and-paste the following list of errors to the <a href="%s">WordPress support forums</a> to get additional assistance.').'</p>', __('https://wordpress.org/support/forum/how-to-and-troubleshooting')); |
|
148 | 148 | $problem_output = ''; |
149 | - foreach ( $problems as $table => $problem ) |
|
149 | + foreach ($problems as $table => $problem) |
|
150 | 150 | $problem_output .= "$table: $problem\n"; |
151 | - echo '<p><textarea name="errors" id="errors" rows="20" cols="60">' . esc_textarea( $problem_output ) . '</textarea></p>'; |
|
151 | + echo '<p><textarea name="errors" id="errors" rows="20" cols="60">'.esc_textarea($problem_output).'</textarea></p>'; |
|
152 | 152 | } else { |
153 | - echo '<p>' . __( 'Repairs complete. Please remove the following line from wp-config.php to prevent this page from being used by unauthorized users.' ) . "</p><p><code>define('WP_ALLOW_REPAIR', true);</code></p>"; |
|
153 | + echo '<p>'.__('Repairs complete. Please remove the following line from wp-config.php to prevent this page from being used by unauthorized users.')."</p><p><code>define('WP_ALLOW_REPAIR', true);</code></p>"; |
|
154 | 154 | } |
155 | 155 | } else { |
156 | 156 | |
157 | - echo '<h1 class="screen-reader-text">' . __( 'WordPress database repair' ) . '</h1>'; |
|
157 | + echo '<h1 class="screen-reader-text">'.__('WordPress database repair').'</h1>'; |
|
158 | 158 | |
159 | - if ( isset( $_GET['referrer'] ) && 'is_blog_installed' == $_GET['referrer'] ) |
|
160 | - echo '<p>' . __( 'One or more database tables are unavailable. To allow WordPress to attempt to repair these tables, press the “Repair Database” button. Repairing can take a while, so please be patient.' ) . '</p>'; |
|
159 | + if (isset($_GET['referrer']) && 'is_blog_installed' == $_GET['referrer']) |
|
160 | + echo '<p>'.__('One or more database tables are unavailable. To allow WordPress to attempt to repair these tables, press the “Repair Database” button. Repairing can take a while, so please be patient.').'</p>'; |
|
161 | 161 | else |
162 | - echo '<p>' . __( 'WordPress can automatically look for some common database problems and repair them. Repairing can take a while, so please be patient.' ) . '</p>'; |
|
162 | + echo '<p>'.__('WordPress can automatically look for some common database problems and repair them. Repairing can take a while, so please be patient.').'</p>'; |
|
163 | 163 | ?> |
164 | - <p class="step"><a class="button button-large" href="repair.php?repair=1"><?php _e( 'Repair Database' ); ?></a></p> |
|
165 | - <p><?php _e( 'WordPress can also attempt to optimize the database. This improves performance in some situations. Repairing and optimizing the database can take a long time and the database will be locked while optimizing.' ); ?></p> |
|
166 | - <p class="step"><a class="button button-large" href="repair.php?repair=2"><?php _e( 'Repair and Optimize Database' ); ?></a></p> |
|
164 | + <p class="step"><a class="button button-large" href="repair.php?repair=1"><?php _e('Repair Database'); ?></a></p> |
|
165 | + <p><?php _e('WordPress can also attempt to optimize the database. This improves performance in some situations. Repairing and optimizing the database can take a long time and the database will be locked while optimizing.'); ?></p> |
|
166 | + <p class="step"><a class="button button-large" href="repair.php?repair=2"><?php _e('Repair and Optimize Database'); ?></a></p> |
|
167 | 167 | <?php |
168 | 168 | } |
169 | 169 | ?> |
@@ -7,7 +7,7 @@ |
||
7 | 7 | * @since 3.0.0 |
8 | 8 | */ |
9 | 9 | |
10 | -require_once( dirname( __FILE__ ) . '/admin.php' ); |
|
10 | +require_once(dirname(__FILE__).'/admin.php'); |
|
11 | 11 | |
12 | -wp_redirect( network_admin_url('sites.php') ); |
|
12 | +wp_redirect(network_admin_url('sites.php')); |
|
13 | 13 | exit; |
@@ -8,6 +8,6 @@ |
||
8 | 8 | */ |
9 | 9 | |
10 | 10 | /** Load WordPress Administration Bootstrap */ |
11 | -require_once( dirname( __FILE__ ) . '/admin.php' ); |
|
11 | +require_once(dirname(__FILE__).'/admin.php'); |
|
12 | 12 | |
13 | -require( ABSPATH . 'wp-admin/user-edit.php' ); |
|
13 | +require(ABSPATH.'wp-admin/user-edit.php'); |
@@ -8,6 +8,6 @@ |
||
8 | 8 | */ |
9 | 9 | |
10 | 10 | /** Load WordPress Administration Bootstrap */ |
11 | -require_once( dirname( __FILE__ ) . '/admin.php' ); |
|
11 | +require_once(dirname(__FILE__).'/admin.php'); |
|
12 | 12 | |
13 | -require( ABSPATH . 'wp-admin/credits.php' ); |
|
13 | +require(ABSPATH.'wp-admin/credits.php'); |
@@ -8,6 +8,6 @@ |
||
8 | 8 | */ |
9 | 9 | |
10 | 10 | /** Load WordPress Administration Bootstrap */ |
11 | -require_once( dirname( __FILE__ ) . '/admin.php' ); |
|
11 | +require_once(dirname(__FILE__).'/admin.php'); |
|
12 | 12 | |
13 | -require( ABSPATH . 'wp-admin/index.php' ); |
|
13 | +require(ABSPATH.'wp-admin/index.php'); |
@@ -9,14 +9,14 @@ |
||
9 | 9 | |
10 | 10 | $menu[2] = array(__('Dashboard'), 'exist', 'index.php', '', 'menu-top menu-top-first menu-icon-dashboard', 'menu-dashboard', 'dashicons-dashboard'); |
11 | 11 | |
12 | -$menu[4] = array( '', 'exist', 'separator1', '', 'wp-menu-separator' ); |
|
12 | +$menu[4] = array('', 'exist', 'separator1', '', 'wp-menu-separator'); |
|
13 | 13 | |
14 | -$menu[70] = array( __('Profile'), 'exist', 'profile.php', '', 'menu-top menu-icon-users', 'menu-users', 'dashicons-admin-users' ); |
|
14 | +$menu[70] = array(__('Profile'), 'exist', 'profile.php', '', 'menu-top menu-icon-users', 'menu-users', 'dashicons-admin-users'); |
|
15 | 15 | |
16 | -$menu[99] = array( '', 'exist', 'separator-last', '', 'wp-menu-separator' ); |
|
16 | +$menu[99] = array('', 'exist', 'separator-last', '', 'wp-menu-separator'); |
|
17 | 17 | |
18 | 18 | $_wp_real_parent_file['users.php'] = 'profile.php'; |
19 | 19 | $compat = array(); |
20 | 20 | $submenu = array(); |
21 | 21 | |
22 | -require_once(ABSPATH . 'wp-admin/includes/menu.php'); |
|
22 | +require_once(ABSPATH.'wp-admin/includes/menu.php'); |
@@ -9,14 +9,14 @@ discard block |
||
9 | 9 | |
10 | 10 | define('WP_USER_ADMIN', true); |
11 | 11 | |
12 | -require_once( dirname(dirname(__FILE__)) . '/admin.php'); |
|
12 | +require_once(dirname(dirname(__FILE__)).'/admin.php'); |
|
13 | 13 | |
14 | -if ( ! is_multisite() ) { |
|
15 | - wp_redirect( admin_url() ); |
|
14 | +if ( ! is_multisite()) { |
|
15 | + wp_redirect(admin_url()); |
|
16 | 16 | exit; |
17 | 17 | } |
18 | 18 | |
19 | -$redirect_user_admin_request = ( ( $current_blog->domain != $current_site->domain ) || ( $current_blog->path != $current_site->path ) ); |
|
19 | +$redirect_user_admin_request = (($current_blog->domain != $current_site->domain) || ($current_blog->path != $current_site->path)); |
|
20 | 20 | /** |
21 | 21 | * Filter whether to redirect the request to the User Admin in Multisite. |
22 | 22 | * |
@@ -24,9 +24,9 @@ discard block |
||
24 | 24 | * |
25 | 25 | * @param bool $redirect_user_admin_request Whether the request should be redirected. |
26 | 26 | */ |
27 | -$redirect_user_admin_request = apply_filters( 'redirect_user_admin_request', $redirect_user_admin_request ); |
|
28 | -if ( $redirect_user_admin_request ) { |
|
29 | - wp_redirect( user_admin_url() ); |
|
27 | +$redirect_user_admin_request = apply_filters('redirect_user_admin_request', $redirect_user_admin_request); |
|
28 | +if ($redirect_user_admin_request) { |
|
29 | + wp_redirect(user_admin_url()); |
|
30 | 30 | exit; |
31 | 31 | } |
32 | -unset( $redirect_user_admin_request ); |
|
32 | +unset($redirect_user_admin_request); |