Yeah, just remove the following code in each file:
PHP Code:
if ($image_type == "image/gif" OR $image_type == "image/pjpeg" OR $image_type == "image/jpeg" OR $image_type == "image/x-png")
{
and this part... it looks a little different in each file so you may have to search a little for it.
PHP Code:
else
{
$vbphrase['toplist_incorrect_image_format'] = str_replace('[1]', $image_type, $vbphrase['toplist_incorrect_image_format']);
$html = $vbphrase['toplist_incorrect_image_format'];
eval('print_output("' . fetch_template('Toplist_Add_Site') . '");');
}
That should remove the check, make sure to backup the files first in case anything goes wrong.
Derek