Closed (fixed)
Project:
phpBB Forum Integration
Version:
6.x-2.0-rc4
Component:
Code
Priority:
Normal
Category:
Support request
Assigned:
Unassigned
Reporter:
Created:
17 Aug 2011 at 06:33 UTC
Updated:
9 Jan 2012 at 08:13 UTC
Hello! Who knows how to fix this error?
Fatal error: Call to undefined function _phpbbforum_set_user_profile_data() in /var/www/lomut/sites/all/modules/phpbbforum/phpbbforum.sync.inc on line 111
Comments
Comment #1
vb commentedDo you use content_profile module?
in phpbbforum.module find line 90
if (module_exists('profile')) {
module_load_include('profile.inc', 'phpbbforum');
}
change it to
if (module_exists('profile') || module_exists('content_profile')) {
module_load_include('profile.inc', 'phpbbforum');
}
or comment line 90, 92
//if (module_exists('profile')) {
module_load_include('profile.inc', 'phpbbforum');
//}
Comment #2
sozonov commentedthank you!it work!
Comment #3
fizk commented