Skip to content

Commit

Permalink
Merge branch 'pr643' into b-6.x
Browse files Browse the repository at this point in the history
  • Loading branch information
Sieg committed Apr 19, 2018
2 parents 3975002 + 98db747 commit 54e83e7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).

### Fixed
- Fixed notices and performance improved in FontendController::isVatIncluded [PR-642](https://github.com/OXID-eSales/oxideshop_ce/pull/642)
- Use error_404_handler in article list controller in place of outdated 404 handling [PR-643](https://github.com/OXID-eSales/oxideshop_ce/pull/643)

## [6.2.0] - 2018-03-27

Expand Down
2 changes: 1 addition & 1 deletion source/Application/Controller/ArticleListController.php
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ protected function _checkRequestedPage()
if (!$pageCount && $currentPageNumber) {
// display error if category has no products, but page number is entered
$this->_iActPage = 0;
\OxidEsales\Eshop\Core\Registry::getUtils()->handlePageNotFoundError($this->getActiveCategory()->getLink());
error_404_handler($this->getActiveCategory()->getLink());
}
}

Expand Down

0 comments on commit 54e83e7

Please sign in to comment.