Skip to content

Commit

Permalink
Merge branch 'b-6.1.x' into b-6.x
Browse files Browse the repository at this point in the history
  • Loading branch information
robertblank committed Oct 15, 2018
2 parents 8cc24a7 + 305c233 commit 1efc604
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 20 deletions.
7 changes: 0 additions & 7 deletions CHANGELOG.md
Expand Up @@ -36,13 +36,6 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
- Language constants `source/Application/views/admin/[de,en]/lang.php`:
`SHOP_CONFIG_INCLUDE_PRODUCT_REVIEW_LINKS_IN_ORDER_EMAIL`

### Deprecated
- `\OxidEsales\EshopCommunity\Core\Base::setConfig`
- `\OxidEsales\EshopCommunity\Core\Base::getConfig`
- `\OxidEsales\EshopCommunity\Core\Email::$_oConfig`
- `\OxidEsales\EshopCommunity\Core\Email::setConfig`
- `\OxidEsales\EshopCommunity\Core\Email::getConfig`

### Fixed
- Fix global variable name in startProfile [PR-651](https://github.com/OXID-eSales/oxideshop_ce/pull/651)
- Improve a check of module id in ModuleExtensionsCleaner::filterExtensionsByModuleId [PR-662](https://github.com/OXID-eSales/oxideshop_ce/pull/662)
Expand Down
4 changes: 0 additions & 4 deletions source/Core/Base.php
Expand Up @@ -86,8 +86,6 @@ public function __construct()
}

/**
* @deprecated since v6.3.1 (2018-10-01); This method will be removed completely. Use OxidEsales\Eshop\Core\Registry::getConfig() in the future.
*
* oxConfig instance getter
*
* @return \OxidEsales\Eshop\Core\Config
Expand All @@ -102,8 +100,6 @@ public function getConfig()
}

/**
* @deprecated since v6.3.1 (2018-10-01); This method will be removed completely. Use OxidEsales\Eshop\Core\Registry::getConfig()->setConfigParam() in the future.
*
* oxConfig instance setter
*
* @param \OxidEsales\Eshop\Core\Config $config config object
Expand Down
10 changes: 1 addition & 9 deletions source/Core/Email.php
Expand Up @@ -272,11 +272,7 @@ class Email extends \PHPMailer
*/
protected $_sCharSet = null;

/**
* @deprecated since v6.3.1 (2018-10-01); This property will be removed completely.
*
* @var \OxidEsales\Eshop\Core\Config
*/
/** @var \OxidEsales\Eshop\Core\Config */
protected $_oConfig = null;

/**
Expand Down Expand Up @@ -327,8 +323,6 @@ public function __call($method, $args)
}

/**
* @deprecated since v6.3.1 (2018-10-01); This method will be removed completely. Use OxidEsales\Eshop\Core\Registry::getConfig() in the future.
*
* oxConfig instance getter
*
* @return \OxidEsales\Eshop\Core\Config
Expand All @@ -343,8 +337,6 @@ public function getConfig()
}

/**
* @deprecated since v6.3.1 (2018-10-01); This method will be removed completely. Use OxidEsales\Eshop\Core\Registry::getConfig()->setConfigParam() in the future.
*
* oxConfig instance setter
*
* @param \OxidEsales\Eshop\Core\Config $config config object
Expand Down

0 comments on commit 1efc604

Please sign in to comment.