Closed (fixed)
Project:
OG Calendar
Version:
4.7.x-1.x-dev
Component:
Code
Priority:
Minor
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
7 Jan 2007 at 22:03 UTC
Updated:
29 Jan 2007 at 00:30 UTC
On line 94 in og_calendar_page(), this line of code:
return t('No (visible) events for %name were found!', array('%name' => $group->name));
...should not use $group->name, which is the name of the user who created the group, not the name of the group itself. Instead, it should use the variable $group->title, like so:
return t('No (visible) events for %name were found!', array('%name' => $group->title));
Comments
Comment #1
pcdonohue commentedHi,
this was fixed back in September.
http://drupal.org/node/83766
What version are you using?
Patrick
Comment #2
(not verified) commented