From e7f4d926c9736c60a7d2f24b32a9546ca72e7623 Mon Sep 17 00:00:00 2001 From: Jeremy Felt Date: Wed, 4 Oct 2017 16:25:07 +0000 Subject: [PATCH] Multisite: Only query for one site in `domain_exists()`. `get_sites()` queries for a maximum of 100 records by default. In `domain_exists()`, we only use one. A previous commit, [41736], has this same commit message but applies to `get_blog_id_from_url()` and #42073 instead. Props danieltj, spacedmonkey. Fixes #42072. git-svn-id: https://develop.svn.wordpress.org/trunk@41738 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/ms-functions.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/wp-includes/ms-functions.php b/src/wp-includes/ms-functions.php index 7fb628cd72..d4bb42f616 100644 --- a/src/wp-includes/ms-functions.php +++ b/src/wp-includes/ms-functions.php @@ -1362,6 +1362,7 @@ function domain_exists( $domain, $path, $network_id = 1 ) { 'domain' => $domain, 'path' => $path, 'fields' => 'ids', + 'number' => 1, ); $result = get_sites( $args ); $result = array_shift( $result );