Just get:

Group membership:
- Private group -

Comments

StephenRobinson’s picture

in og_ui.module
function og_ui_field_formatter_view sets $element[$delta] = array('#markup' => '- ' . t('Private group') . ' -');
No attempt to check whether the user is in the group is evident.

StephenRobinson’s picture

easy fix?

        if ($user->uid!=arg(1)) {
          $element[$delta] = array('#markup' => '- ' . t('Private group') . ' -');
        }
RoySegall’s picture

More information will be nice: How to reproduce this on a clean OG. Are you using views for that? because the normal field formatter is work properly.