Skip to content

Commit

Permalink
Fix: [ bug #1618 ] PHP Error thrown when saving a barcode
Browse files Browse the repository at this point in the history
  • Loading branch information
eldy committed Oct 27, 2014
1 parent 41f0920 commit badf379
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions ChangeLog
Expand Up @@ -10,6 +10,7 @@ English Dolibarr ChangeLog
- Fix: box of customer and propsects were not correctly disabled.
- Fix: right and error management #1961
- Fix: Fix Error when trying to clone an Order #1943
- Fix: [ bug #1618 ] PHP Error thrown when saving a barcode

***** ChangeLog for 3.6.1 compared to 3.6.* *****
For users:
Expand Down
2 changes: 1 addition & 1 deletion htdocs/product/fiche.php
Expand Up @@ -124,7 +124,7 @@
// Barcode value
if ($action == 'setbarcode' && $createbarcode)
{
$result=$object->check_barcode(GETPOST('barcode'),GETPOT('barcode_type_code'));
$result=$object->check_barcode(GETPOST('barcode'),GETPOST('barcode_type_code'));

if ($result >= 0)
{
Expand Down

0 comments on commit badf379

Please sign in to comment.