Skip to content

Commit

Permalink
Merge branch 'hotfix/2.6.8'
Browse files Browse the repository at this point in the history
  • Loading branch information
aschempp committed Feb 27, 2020
2 parents d10bf98 + ee50992 commit 387d137
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions system/modules/isotope/docs/CHANGELOG-2.6.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
Isotope eCommerce Changelog
===========================

Version 2.6.8 (2020-02-27)
--------------------------

- Fixed internal server error in shipping method (#2114)


Version 2.6.7 (2020-02-26)
--------------------------

Expand Down
2 changes: 1 addition & 1 deletion system/modules/isotope/library/Isotope/Isotope.php
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ class Isotope extends \Controller
/**
* Isotope version
*/
const VERSION = '2.6.7';
const VERSION = '2.6.8';

/**
* True if the system has been initialized
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ class Flat extends Shipping
*/
public function getPrice(IsotopeProductCollection $objCollection = null)
{
if ('' === (string) $this->arrData['price'])) {
if ('' === (string) $this->arrData['price']) {
return null;
}

Expand Down

0 comments on commit 387d137

Please sign in to comment.