From 76410b888888deceb50c7fcb9ba559141454a522 Mon Sep 17 00:00:00 2001 From: Kevin Cristiano <kcristiano@kcristiano.com> Date: Thu, 21 Feb 2019 08:52:52 -0500 Subject: [PATCH] Fix Synchronize users for Multi-Site. Props Christian Wach Signed-off-by: Kevin Cristiano <kcristiano@kcristiano.com> --- civicrm/CRM/Utils/System/WordPress.php | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/civicrm/CRM/Utils/System/WordPress.php b/civicrm/CRM/Utils/System/WordPress.php index a74e1e3de0..c65c3a057b 100644 --- a/civicrm/CRM/Utils/System/WordPress.php +++ b/civicrm/CRM/Utils/System/WordPress.php @@ -831,11 +831,13 @@ class CRM_Utils_System_WordPress extends CRM_Utils_System_Base { $contactCreated = 0; $contactMatching = 0; - global $wpdb; - $wpUserIds = $wpdb->get_col("SELECT $wpdb->users.ID FROM $wpdb->users"); + // previously used $wpdb - which means WordPress *must* be bootstrapped + $wpUsers = get_users(array( + 'blog_id' => get_current_blog_id(), + 'number' => -1, + )); - foreach ($wpUserIds as $wpUserId) { - $wpUserData = get_userdata($wpUserId); + foreach ($wpUsers as $wpUserData) { $contactCount++; if ($match = CRM_Core_BAO_UFMatch::synchronizeUFMatch($wpUserData, $wpUserData->$id, -- GitLab