Skip to content

Commit

Permalink
Fixed #1533
Browse files Browse the repository at this point in the history
  • Loading branch information
abrookbanks committed Mar 2, 2017
1 parent a3816d9 commit 947018b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion admin/sources/products.index.inc.php
Expand Up @@ -770,7 +770,7 @@
$assign = array('set_enabled' => '1', 'option_price' => number_format(0, 2), 'option_weight' => number_format(0, 2));

$option_list[$member['option_id']][$member['value_id']] = array_merge($member, $group, $value, $assign, array('show_disable' => true));
$option_list[$member['option_id']][$member['value_id']] = (isset($set_product['set_name']) && !empty($set_product['set_name'])) ? $set_product['set_name'] : $lang['common']['none'];
$option_list[$member['option_id']][$member['value_id']]['set_name'] = (isset($set_product['set_name']) && !empty($set_product['set_name'])) ? $set_product['set_name'] : $lang['common']['none'];
}
$option_list[$member['option_id']]['priority'] = $group['priority'];
}
Expand Down

1 comment on commit 947018b

@Markb256
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That worked perfectly, thank you very much for all your help.

Mark

Please sign in to comment.