Skip to content

Commit 8ba2fd1

Browse files
committed
Fix: multisite issue
1 parent 2b47d0f commit 8ba2fd1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

inc/Modules/Multisite/Admin.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public function register_hooks(): void {
4242
public function enqueue_scripts( string $hook ): void {
4343
$current_screen = get_current_screen();
4444

45-
if ( ! $current_screen instanceof \WP_Screen || 'plugins-network' !== $current_screen->id || ! MU_Settings::is_governing_site_selected() ) {
45+
if ( ! $current_screen instanceof \WP_Screen || 'plugins-network' !== $current_screen->id || MU_Settings::is_governing_site_selected() ) {
4646
return;
4747
}
4848

0 commit comments

Comments
 (0)