Skip to content
This repository has been archived by the owner on Apr 26, 2022. It is now read-only.

Commit

Permalink
Merge branch 'hotfix/3.3.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
Hannu Pölönen committed Nov 27, 2017
2 parents 8bb227b + 07b3a04 commit 86e7865
Show file tree
Hide file tree
Showing 7 changed files with 94 additions and 141 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
All notable changes to this project will be documented in this file. This project adheres to Semantic Versioning.

### 3.3.2
* Update composer dependencies
* Update Magento package dependencies
* Define PHP requirements

### 3.3.1
* Fix the issue that new product url contains '_ignore_category' when flat catalog is enabled

Expand Down
2 changes: 1 addition & 1 deletion app/code/community/Nosto/Tagging/Model/Meta/Variation.php
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ public function loadData(
$tmpProduct->setCustomerGroupId($group->getCustomerGroupId());
/* @var Nosto_Tagging_Helper_Variation $variationHelper */
$variationHelper = Mage::helper('nosto_tagging/variation');
$this->setId($variationHelper->generateVariationId($group));
$this->setVariationId($variationHelper->generateVariationId($group));
$this->setAvailability($productAvailability);
$this->setPriceCurrencyCode($currencyCode);

Expand Down
2 changes: 1 addition & 1 deletion app/code/community/Nosto/Tagging/etc/config.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
<config>
<modules>
<Nosto_Tagging>
<version>3.3.1</version>
<version>3.3.2</version>
</Nosto_Tagging>
</modules>
<global>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ $priceHelper = Mage::helper('nosto_tagging/price');
<?php /* @var Nosto_Types_Product_VariationInterface $variation */ ?>
<?php foreach ($product->getVariations() as $variation) : ?>
<div class="variation">
<span class="variation_id"><?php echo $helper->escapeHtml($variation->getId()); ?></span>
<span class="variation_id"><?php echo $helper->escapeHtml($variation->getVariationId()); ?></span>
<span class="price_currency_code"><?php echo $helper->escapeHtml($variation->getPriceCurrencyCode()); ?></span>
<span class="price"><?php echo $helper->escapeHtml($variation->getPrice()); ?></span>
<span class="list_price"><?php echo $helper->escapeHtml($variation->getListPrice()); ?></span>
Expand Down
3 changes: 2 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@
}
},
"require": {
"nosto/php-sdk": "3.0.12"
"php": ">=5.4.0",
"nosto/php-sdk": "3.1.1"
},
"require-dev": {
"mridang/magazine": "0.1",
Expand Down
Loading

0 comments on commit 86e7865

Please sign in to comment.