Skip to content

Commit

Permalink
Do not copy the product GTIN and SKU (#2288)
Browse files Browse the repository at this point in the history
  • Loading branch information
aschempp committed May 23, 2022
1 parent e243598 commit 788e77f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions system/modules/isotope/dca/tl_iso_product.php
Original file line number Diff line number Diff line change
Expand Up @@ -360,7 +360,7 @@
'search' => true,
'sorting' => true,
'inputType' => 'text',
'eval' => array('maxlength'=>14, 'unique'=>true, 'tl_class'=>'w50'),
'eval' => array('maxlength'=>14, 'unique'=>true, 'doNotCopy'=>true, 'tl_class'=>'w50'),
'attributes' => array('legend'=>'general_legend', 'fe_search'=>true, 'singular'=>true),
'sql' => "varchar(14) NOT NULL default ''",
),
Expand All @@ -371,7 +371,7 @@
'search' => true,
'sorting' => true,
'inputType' => 'text',
'eval' => array('mandatory'=>true, 'maxlength'=>128, 'unique'=>true, 'tl_class'=>'w50'),
'eval' => array('mandatory'=>true, 'maxlength'=>128, 'unique'=>true, 'doNotCopy'=>true, 'tl_class'=>'w50'),
'attributes' => array('legend'=>'general_legend', 'fe_sorting'=>true, 'fe_search'=>true, 'singular'=>true),
'sql' => "varchar(128) NOT NULL default ''",
),
Expand Down
1 change: 1 addition & 0 deletions system/modules/isotope/docs/CHANGELOG-2.8.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ Version 2.8.1 (2022-??-??)
- Fixed unsetting range filter on empty input
- Fixed setting range filter field value
- Fixed PHP8 multiple issues (#2291)
- Do not copy the product GTIN and SKU (#2288)


Version 2.8.0 (2022-04-27)
Expand Down

0 comments on commit 788e77f

Please sign in to comment.