Skip to content

Commit

Permalink
parentheses around different binary boolean
Browse files Browse the repository at this point in the history
  • Loading branch information
jazzsequence committed Jul 10, 2024
1 parent 46e15c3 commit eccc159
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion object-cache.php
Original file line number Diff line number Diff line change
Expand Up @@ -1545,7 +1545,7 @@ public function __construct() {
}
}

$this->global_prefix = ( $this->multisite || defined( 'CUSTOM_USER_TABLE' ) && defined( 'CUSTOM_USER_META_TABLE' ) ) ? '' : $table_prefix;
$this->global_prefix = ( $this->multisite || ( defined( 'CUSTOM_USER_TABLE' ) && defined( 'CUSTOM_USER_META_TABLE' ) ) ) ? '' : $table_prefix;

// @todo This should be moved to the PHP4 style constructor, PHP5
register_shutdown_function( [ $this, '__destruct' ] );
Expand Down

0 comments on commit eccc159

Please sign in to comment.