Fatal error: Call to undefined function _og_content_type_is_admin() ...og_content_type_admin.module on line 1023
solution:
change on line 1023
if (_og_content_type_admin_is_admin($group)) {
to
if (_og_content_type_is_admin($group)) {

Comments

rconstantine’s picture

Assigned: Unassigned » rconstantine
Status: Needs review » Fixed

Should be the other way around. All functions should start with og_content_type_admin, and then the function name. I'll change things and upload right now as I have a little bit of time.

Anonymous’s picture

Status: Fixed » Closed (fixed)