PHPBB3.0.X论坛帖子显示 默认头像
  来源http://www.phpbbchina.com/forum/viewtopic.php?f=24&t=7459

打开includes/functions_display.php
1,找到
[code] if (empty($avatar) || !$avatar_type || (!$config['allow_avatar'] && !$ignore_config))
{
return '';
}[/code]

[code]return '';[/code]
替换为
[code]return '<img src="images/avatars/no_avatar.gif" alt="' . ((!empty($user->lang[$alt])) ? $user->lang[$alt] : $alt) . '" />';[/code]
保存,上传后覆盖。

2,然后把一个名称为no_avatar.jpg的图片文件
例如:
上传到你的论坛目录/images/avatars文件夹中

然后刷新帖子即可看到:没有设置头像的用户头像显示出来了。

目前头像列表因为头像图片过多(1020张)需要分页处理,待更改。