Okay I found one style that was missing the gif file . But nobody is using the style. So we will see but still this site has the same issues on featured members.
Express Hosting
"We are the official hosting company of UBB.threads. Ask us about our free migration services to migrate your UBB.threads installation."
#237816 - 07/08/1012:29 PMRe: featured member image
[Re: Ruben]
Here is an an actual code change that will work. Gizmo was close, but just needs to be a bit different and it needs to be general/default I've added it here as well so it should no longer break, unless someone just has a link to an avatar that doesn't exist.
Open up your cache_builders/featured_member.php script. Line 57, you'll see this:
Code:
if (!$avatar) {
Change that, so it reads:
Code:
if (!$avatar) {
if (!$style_array['general']) {
$style_array['general'] = "general/default";
}