Skip to content

Commit

Permalink
Merge tag '2.3.20'
Browse files Browse the repository at this point in the history
Hotfix release 2.3.20

- Fix copy handler
  • Loading branch information
stefanheimes committed Aug 18, 2024
2 parents 7b66676 + 6edff4d commit afd4d05
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -264,9 +264,9 @@ protected function redirect($environment, $copiedModelId)
$urlBuilder = new UrlBuilder();
if ($routeName !== 'contao_backend') {
$params = [
'table' => $copiedModelId->getDataProviderName(),
'act' => 'edit',
'id' => $copiedModelId->getSerialized(),
'tableName' => $copiedModelId->getDataProviderName(),
'act' => 'edit',
'id' => $copiedModelId->getSerialized(),
];
if (null !== ($pid = $inputProvider->getParameter('pid'))) {
$params['pid'] = $pid;
Expand Down
2 changes: 1 addition & 1 deletion src/Data/LanguageInformationInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public function getCountryCode();
*
* If no country code has been set, the language code only will get returned.
*
* @return mixed
* @return string
*/
public function getLocale();
}

0 comments on commit afd4d05

Please sign in to comment.