I got this error
Code:
Fatal error: Call to undefined function: fetch_character_count() in /var/www/html/forums/profile.php on line 1310
My line 1310 is as follow:
Code:
if (!is_member_of($bbuserinfo, 5, 6, 7, 11) AND fetch_character_count($signature, '[img') > 0)
I have used
this hack to accept multiple groups at once.
What can be wrong?
Ok to my above error question ... here is what I did ... tell me if I am right or wrong.
Find:
Code:
if (!is_member_of($bbuserinfo, 5, 6, 7, 11) AND fetch_character_count($signature, '[img') > 0)
ADD above:
Code:
require_once('./includes/functions_misc.php');
It works for me though.