Active
Project:
OG Calendar
Version:
5.x-1.1
Component:
Code
Priority:
Normal
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
2 Apr 2009 at 17:58 UTC
Updated:
2 Apr 2009 at 17:58 UTC
"More" link at the bottom corner of OG calendar block links to the currently display node id. It should get the id of the current group.
The line 65 in og_calendar.module,
$output .= theme('event_more_link', 'og_calendar/'.arg(1));
should be like,
$node = og_get_group_context(); // Line 19
$gid = $node->nid; // Remember group id
// ... ... ...
$output .= theme('event_more_link', 'og_calendar/'.$gid);