Hi,
I am running IPB 3.14 and noticed the same thing.
I found it to be a problem in the file:
arrowchat/includes/functions_receive.php (the one for invision power board)
Check this section in the file and see if changing the 'if' statement line to what I have below fixes it. It fixed mine. I also just reported this in the ticket system here.
Look for:
- Code: Select all
function getAvatar($image, $user_id) {
global $INFO;
Change the line which follows that originally reads:
- Code: Select all
if (is_file(dirname(dirname(__FILE__)).'/uploads/'.$image)) {
With this replacement line:
- Code: Select all
if ($image) {
I'm not sure why the original line doesn't work. Their may be a better fix in line with the intent of the original code. But this has it working for now.