View Issue Details

IDProjectCategoryView StatusLast Update
0003293OXID eShop (all versions)2.3. Extensions (modules, themes)public2012-12-10 13:33
Reporterleofonic 
PriorityhighSeverityminorReproducibilityalways
Status resolvedResolutionfixed 
Product Version4.5.2 revision 38481 
Target VersionFixed in Version4.6.0_beta2 
Summary0003293: Description is not always updated when a variant is selected
DescriptionIf you have an article with one dimension variants, if any other than the first variant is selected in details dropdown, article description is not updated. Subsequent selections update the description.

Solution for bug 0002809 contains a change:
- if (oxVariantSelections.indexOf(hash) < 0) {
+ if ( jQuery.inArray(hash, oxVariantSelections) ) {

The comparison is missing here:
+ if ( jQuery.inArray(hash, oxVariantSelections) < 0) {
TagsNo tags attached.
ThemeAzure
BrowserAll
PHP Versionany
Database Versionany

Activities

arvydas_vapsva

2011-10-14 15:01

reporter   ~0005317

thnx @leofonic for report and hint!