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)) {
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
Comment #1
rconstantine commentedShould 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.
Comment #2
(not verified) commented