-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
HotFix - 2.1.2 #179
HotFix - 2.1.2 #179
Conversation
supercid
commented
Jun 28, 2018
•
edited
Loading
edited
- Fix SKU Variations For Single Products
- Add Variant Configuration Group Options Into Custom Attributes
- Fix issue when updating the plugin could not create database column for cart restore hash
- Fix missing category tagging in category listing page
Components/Helper/CustomFields.php
Outdated
foreach ($configurator as $config) { | ||
/** @var Option $config */ | ||
if (!$config instanceof Option | ||
&& $config->getGroup() === null |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should the operator be OR?
if (!$config instanceof Option
|| $config->getGroup() === null)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed, thanks
CHANGELOG.md
Outdated
@@ -2,6 +2,12 @@ | |||
All notable changes to this project will be documented in this file. | |||
This project adheres to [Semantic Versioning](http://semver.org/). | |||
|
|||
## [2.1.2] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- I wouldn't use came case in change log
- Also check the changes linking (the links are defined at the end of the change log file)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fixed, thanks