The client id of the site owner doesn't get cached.

if (!$revenue) {
    // If not enabled, cache the site wide client ID
    return $site_client;
}

Should be something like:

if (!$revenue) {
    // If not enabled, cache the site wide client ID
    $client = $site_client;
    return $client;
}

Comments

kbahey’s picture

Version: master » 5.x-2.x-dev
Status: Active » Fixed

Fixed in 5.x-2.x-dev. Should be available in the tarball tomorrow.

(Note, this is now in revenue_sharing_basic.module)

Thanks

Anonymous’s picture

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for two weeks with no activity.