File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -872,7 +872,6 @@ public static function get_wp_core(): array {
872872 // Save few function calls.
873873 $ permalink_structure = get_option ( 'permalink_structure ' );
874874 $ is_ssl = is_ssl ();
875- $ is_multisite = is_multisite ();
876875 $ users_can_register = get_option ( 'users_can_register ' );
877876 $ blog_public = get_option ( 'blog_public ' );
878877 $ default_comment_status = get_option ( 'default_comment_status ' );
@@ -932,8 +931,8 @@ public static function get_wp_core(): array {
932931 ),
933932 'multisite ' => array (
934933 'label ' => __ ( 'Is this a multisite? ' ),
935- 'value ' => $ is_multisite ? __ ( 'Yes ' ) : __ ( 'No ' ),
936- 'debug ' => $ is_multisite ,
934+ 'value ' => is_multisite () ? __ ( 'Yes ' ) : __ ( 'No ' ),
935+ 'debug ' => is_multisite () ,
937936 ),
938937 'user_registration ' => array (
939938 'label ' => __ ( 'Can anyone register on this site? ' ),
You can’t perform that action at this time.
0 commit comments