Skip to content

Commit e5bbc49

Browse files
committed
Revert "Check wp_installing first to prevent side effect"
This reverts commit d74109e.
1 parent d74109e commit e5bbc49

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Schema/Builder.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -263,7 +263,7 @@ public function register_custom_tables_names() {
263263
* @return array<mixed> A list of each creation or update result.
264264
*/
265265
public function up( $force = false ) {
266-
if ( wp_installing() || ! is_blog_installed() ) {
266+
if ( ! is_blog_installed() || wp_installing() ) {
267267
return [];
268268
}
269269

0 commit comments

Comments
 (0)