doing a 4.6.6 to 4.7.1 upgrade..
in skin/common_files/customer/main/product_details.tpl
the diff file shows
Code:
@@ -207,8 +208,8 @@
<option value="{$product.appearance.min_quantity}"{if $smarty.get.quantity eq $product.appearance.min_quantity} selected="selected"{/if}>{$product.appearance.min_quantity}</option>
{if not $product.appearance.quantity_input_box_enabled}
{section name=quantity loop=$product.appearance.loop_quantity start=$product.appearance.min_quantity}
- {if %quantity.index% ne $product.appearance.min_quantity}
- <option value="{%quantity.index%}"{if $smarty.get.quantity eq %quantity.index%} selected="selected"{/if}>{%quantity.index%}</option>
+ {if $smarty.section.quantity.index ne $product.appearance.min_quantity}
+ <option value="{$smarty.section.quantity.index}"{if $smarty.get.quantity eq $smarty.section.quantity.index} selected="selected"{/if}>{$smarty.section.quantity.index}</option>
{/if}
{/section}
{/if}
But I cannot find that code at all and I'm pretty sure my file is unmodified from 4.6.6. Can you guys check?