The notification of a new event contains a link to the group and the event like this:
[base]/index.php/forum/groupjive/6-community/7-mt-olympus?tab=grouptabevents
when the link should be
[base]/index.php/groups/6-community/7-mt-olympus?tab=grouptabevents
I traced it to line 453 in components/com_comprofiler/plugin/user/plug_cbgroupjive/plugins/cbgroupjiveevents/component.cbgroupjiveevents.php
Code:
'event' => '[url=' . $_CB_fra mework->pluginClassUrl( 'cbgroupjive', false, array( 'action' => 'groups', 'func' => 'show', 'id' => $row->getInt( 'group', 0 ), 'tab' => 'grouptabeve nts' ) ) . ']' . htmlspecialchars( $row->getString( 'title' ) ) . '[/url]' );
I suppose it is making assumptions about my menus? I dare not change pluginClassUrl because it's probably used everywhere.