I just want to make sure before I do this...am I correct in thinking that only "function check_local_thumb($remote_thumb_file)" needs to be changed? So that it should look like:
function check_local_thumb($local_thumb_file) {
return !is_remote($local_thumb_file) && strpos($local_thumb_file, '/') !== false && preg_match("#\.[gif|jpg|jpeg|png]+$#i", $local_thumb_file) ? 1 : 0;
}
Or does everything after "function check_local_thumb($local_thumb_file)" get deleted?
Also, what does this change fix exactly?
Thanks!
Tina