I just had someone point out a logic error for dealing with products that are set to display images but have no image file set in the database. Basically I forgot to check for a null image name. In the files the code essentially looks like:

} elseif (image_display != 2) {

when it should look like:

} elseif ((image_display != 2) && tep_not_null(products_image)) {

Naturally the exact variables are different in each file. The install instructions have now been corrected. The following instructions have changed: 6a, 7, 9a, 10a, 16, 17a, 19a, 20a, 21a, 22a, 24a, 25, 31a, 31c, 31f, 32a, 33c & 35a. If you follow the pattern above you will know what has changed.

Complete install is enclosed but only the install instructions have changed.

More...