Skip to content

Commit

Permalink
merge branch
Browse files Browse the repository at this point in the history
  • Loading branch information
dpfaffenbauer committed Nov 28, 2017
2 parents b3171dd + 017c42d commit 3579667
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion lib/CoreShop/Model/Product.php
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,8 @@ public static function getLatest($limit = 8)
*/
public static function getPriceCacheTag($product)
{
return 'coreshop_product_'.$product->getId().'_price_' . $product->getTaxRate() . '' . \CoreShop::getTools()->getFingerprint();
$taxRate = str_replace([',','.'], '_', $product->getTaxRate());
return 'coreshop_product_'.$product->getId().'_price_' . $taxRate . '' . \CoreShop::getTools()->getFingerprint();
}

/**
Expand Down
6 changes: 3 additions & 3 deletions plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
<pluginDescription>
CoreShop eCommerce enhances Pimcore's with eCommerce features
</pluginDescription>
<pluginVersion>1.2.2</pluginVersion>
<pluginRevision>129</pluginRevision>
<pluginBuildTimestamp>1486990363</pluginBuildTimestamp>
<pluginVersion>1.2.3</pluginVersion>
<pluginRevision>130</pluginRevision>
<pluginBuildTimestamp>1511890786</pluginBuildTimestamp>
<pluginClassName>\CoreShop\Plugin</pluginClassName>
<pluginIncludePaths>
<path>/CoreShop/lib</path>
Expand Down

0 comments on commit 3579667

Please sign in to comment.