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
Comment #1
kbahey commentedFixed in 5.x-2.x-dev. Should be available in the tarball tomorrow.
(Note, this is now in revenue_sharing_basic.module)
Thanks
Comment #2
Anonymous (not verified) commentedAutomatically closed -- issue fixed for two weeks with no activity.