Extra </div>'s in product_images.tpl when moving from 2.1.0 to 2.1.1

So I am finally moving from 2.1.0 to 2.1.1 and then .2. I set up a test environment on a different server and a different db.



After the upgrade I moved my old css files over and everything worked except the product pages.



In my version 2.1.0 there were two close div tags in skins/basic/customer/views/products/components/product_images.tpl.


```php {* $Id: product_images.tpl 10538 2010-08-30 08:53:19Z alexions $ *}



{assign var=“th_size” value=“30”}

{include file=“common_templates/previewer.tpl”}

{if $product.main_pair.icon || $product.main_pair.detailed}

{assign var=“image_pair_var” value=$product.main_pair}

{elseif $product.option_image_pairs}

{assign var=“image_pair_var” value=$product.option_image_pairs|reset}

{/if}

{include file=“common_templates/image.tpl” obj_id=$product.product_id images=$image_pair_var object_type=“detailed_product” class=“cm-thumbnails” show_thumbnail=“Y” image_width=$settings.Thumbnails.product_details_thumbnail_width image_height=$settings.Thumbnails.product_details_thumbnail_height}



{foreach from=$product.image_pairs item=“image_pair”}

{if $image_pair}

{if $image_pair.image_id == 0}

{assign var=“image_id” value=$image_pair.detailed_id}

{else}

{assign var=“image_id” value=$image_pair.image_id}

{/if}

{include file=“common_templates/image.tpl” images=$image_pair object_type=“detailed_product” class=“cm-thumbnails hidden” show_thumbnail=“Y” detailed_link_class=“hidden” obj_id=“$product.product_id_$image_id” image_width=$settings.Thumbnails.product_details_thumbnail_width image_height=$settings.Thumbnails.product_details_thumbnail_height}

{/if}

{/foreach}

```

These did not exist in 2.1.1. After replacing them, the product page rendered correctly.

Has anyone else ran into this? We had an outside developer implement the design. I guess it is possible they inserted these.

Thoughts