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

vb’s picture

Do 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');
//}

sozonov’s picture

thank you!it work!

fizk’s picture

Status: Active » Closed (fixed)