Alright, figured this all out. The guy from
Notimega.Com helped me out on this one, so a big thanks goes out to him.
In the modules/image_upload folder, open image_upload_main.php and change the following lines in the image_upload_preview_handler() function:
if (module_imageupload_use_thickbox)
{
// Use Thickbox method
echo module_imageupload_thickbox_pre1 . getmyurl("outtitle", urlencode($link->title_url)) ... etc;
echo module_imageupload_legendtext;
} else {
// Use Direct link method
echo module_imageupload_directlink_pre1 . $link->url ... etc;
echo module_imageupload_legendtext;
}
You can then fix up the pre1 statement in your settings by taking out the image directory and changing '/' to ''
Hope that helps!