I just found witch code does this - in download.php : $remote_url = 0;
if (!empty($image_row['image_download_url'])) {
if (is_remote_file($image_row['image_download_url']) || is_local_file($image_row['image_download_url'])) {
ereg("(.+)\.(.+)", basename($image_row['image_download_url']), $regs);
$file_name = $regs[1];
$file_extension = $regs[2];
$file['file_name'] = $file_name.(($size) ? "_".$size : "").".".$file_extension;
$file['file_path'] = dirname($image_row['image_download_url'])."/".$file['file_name'];
}
else {
$file['file_path'] = $image_row['image_download_url'];
$remote_url = 1;
}
}
if this code change to this: $remote_url = 0;
if (!empty($image_row['image_download_url'])) {
$file['file_path'] = $image_row['image_download_url'];
$remote_url = 1;
}
then 4images script wont download file, it will just through the link to the user, but....it might not work properly, because the link will work as "open" not "save as".