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

pcdonohue’s picture

Status: Active » Fixed

Hi,

this was fixed back in September.

http://drupal.org/node/83766

What version are you using?

Patrick

Anonymous’s picture

Status: Fixed » Closed (fixed)