Skip to content

Commit

Permalink
Merge pull request #231 from magento-south/BUGS
Browse files Browse the repository at this point in the history
[South] Sprint #34 Bug fixes
  • Loading branch information
slavvka committed Apr 15, 2015
2 parents 07f9f16 + d363ea2 commit d4f4da9
Show file tree
Hide file tree
Showing 31 changed files with 774 additions and 71 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public function getValuesHtml()
if ($_option->getType() == \Magento\Catalog\Model\Product\Option::OPTION_TYPE_DROP_DOWN) {
$select->setName('options[' . $_option->getid() . ']')->addOption('', __('-- Please Select --'));
} else {
$select->setName('options[' . $_option->getid() . '][]');
$select->setName('options[' . $_option->getid() . ']');
$select->setClass('multiselect admin__control-multiselect' . $require . ' product-custom-option');
}
foreach ($_option->getValues() as $_value) {
Expand Down Expand Up @@ -141,7 +141,7 @@ public function getValuesHtml()
' name="options[' .
$_option->getId() .
']' .
$arraySign .
(!empty($arraySign) ? '[' . $htmlValue . ']' : '') .
'" id="options_' .
$_option->getId() .
'_' .
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ ProductConfigure.prototype = {
return false;
}

this._initWindowElements();
this.initialize();
this.current.listType = listType;
this.current.itemId = itemId;
this.confirmedCurrentId = this._getConfirmedBlockId(listType, itemId);
Expand Down
1 change: 1 addition & 0 deletions app/code/Magento/Cms/Api/BlockRepositoryInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@

/**
* CMS block CRUD interface.
* @api
*/
interface BlockRepositoryInterface
{
Expand Down
1 change: 1 addition & 0 deletions app/code/Magento/Cms/Api/Data/BlockInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@

/**
* CMS block interface.
* @api
*/
interface BlockInterface
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@

/**
* Interface for cms block search results.
* @api
*/
interface BlockSearchResultsInterface extends SearchResultsInterface
{
Expand Down
1 change: 1 addition & 0 deletions app/code/Magento/Cms/Api/Data/PageInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@

/**
* CMS page interface.
* @api
*/
interface PageInterface
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@

/**
* Interface for cms page search results.
* @api
*/
interface PageSearchResultsInterface extends SearchResultsInterface
{
Expand Down
1 change: 1 addition & 0 deletions app/code/Magento/Cms/Api/PageRepositoryInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@

/**
* CMS page CRUD interface.
* @api
*/
interface PageRepositoryInterface
{
Expand Down
2 changes: 2 additions & 0 deletions app/code/Magento/Customer/Model/AccountManagement.php
Original file line number Diff line number Diff line change
Expand Up @@ -420,10 +420,12 @@ public function initiatePasswordReset($email, $template, $websiteId = null)
)
);
}
return true;
} catch (MailException $e) {
// If we are not able to send a reset password email, this should be ignored
$this->logger->critical($e);
}
return false;
}

/**
Expand Down
Loading

0 comments on commit d4f4da9

Please sign in to comment.