Good morning,
After updating CB Activity to version 6.0, there was a problem with following CB GroupJave.
The problem seems to be in changing the definition of the resource written to the '#__comprofiler_plugin_activity_following' table.
Previously it was 'groupjive.group.<gropu_id>' now 'cbgroupjive.group.<gropu_id>'.
As a result, entries from the groups we follow are not found. Probably the same problem applies to like groups.
Is a code fix
from
Code:
$asset = new AssetEntity( 'cbgroupjive.group.' . $group->getInt( 'id', 0 ), $data );
to
Code:
$asset = new AssetEntity( 'groupjive.group.' . $group->getInt( 'id', 0 ), $data );
in the file:
/home/.../public_html/components/com_comprofiler/plugin/user/plug_cbactivity/library/Trigger/GroupjiveTrigger.php
can fix the problem?
Regards,