looks like it has also broken some avatars
the avatars end up in red x
If I get properties of the rex x and paste it to a new browser window I get this
Fatal error: Call to a member function on a non-object in /home/talonsv/public_html/forum/image.php on line 211
211 is right after on of the timeslip modifications and 211 is last line in this code
PHP Code:
if ($_REQUEST['type'] == 'profile')
{
$data = 'profilepicdata';
$table = 'customprofilepic';
// No permissions to see profile pics
if (!$vboptions['profilepicenabled'] OR (!($permissions['genericpermissions'] & CANSEEPROFILEPIC) AND $bbuserinfo['userid'] != $userid))
{
header('Content-type: image/gif');
readfile("./$vboptions[cleargifurl]");
exit;
}
}
else if ($_REQUEST['type'] == 'timeslip')
{
$data = 'timeslippicdata';
$table = 'customtimeslippic';
}
else
{
$data = 'avatardata';
$table = 'customavatar';
}
if ($imageinfo = $DB_site->query_first("