From eccc159606e40f344fc906eef77a5d01a839373a Mon Sep 17 00:00:00 2001 From: Chris Reynolds Date: Wed, 10 Jul 2024 09:19:57 -0600 Subject: [PATCH] parentheses around different binary boolean --- object-cache.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/object-cache.php b/object-cache.php index c8a2fdf..e84beef 100644 --- a/object-cache.php +++ b/object-cache.php @@ -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' ] );