Skip to content

Commit

Permalink
Merge branch 'b-7.1.x-pr963' into b-7.1.x
Browse files Browse the repository at this point in the history
  • Loading branch information
Sieg committed May 27, 2024
2 parents dfe500f + ca04553 commit 9445eac
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG-7.1.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@
### Deprecated
- Deprecated the `BasicContextInterface::getCurrentShopId`. Use the `ContextInterface::getCurrentShopId` instead.

### Fixed
- Wrong path calculated for custom theme translations directory [PR-963](https://github.com/OXID-eSales/oxideshop_ce/pull/963) [#0007386](https://bugs.oxid-esales.com/view.php?id=7386) [#0007643](https://bugs.oxid-esales.com/view.php?id=7643)

## v7.1.0 - 2024-03-18

### Added
Expand Down
2 changes: 1 addition & 1 deletion source/Core/Language.php
Original file line number Diff line number Diff line change
Expand Up @@ -724,7 +724,7 @@ protected function getCustomThemeLanguageFiles($language)
$aLangFiles = [];

if ($sCustomTheme) {
$customThemePath = $sAppDir . 'views/' . $sCustomTheme;
$customThemePath = $sAppDir . 'views/' . $sCustomTheme .'/';
$aLangFiles = array_merge($aLangFiles, $this->getThemeLanguageFiles($customThemePath, $sLang));
}

Expand Down

0 comments on commit 9445eac

Please sign in to comment.