Skip to content

Commit

Permalink
IBX-1853: Fixed old namespace to ContentEditController (#250)
Browse files Browse the repository at this point in the history
  • Loading branch information
ViniTou authored Jan 27, 2022
1 parent 1428cde commit 2131304
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/lib/View/Builder/ContentTranslateViewBuilder.php
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ public function __construct(
*/
public function matches($argument)
{
return 'EzSystems\EzPlatformAdminUiBundle\Controller\ContentEditController::translateAction' === $argument;
return 'Ibexa\Bundle\AdminUi\Controller\ContentEditController::translateAction' === $argument;
}

/**
Expand Down
2 changes: 1 addition & 1 deletion src/lib/View/Filter/ContentTranslateViewFilter.php
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ public function handleContentTranslateForm(FilterViewBuilderParametersEvent $eve
$controllerAction = $event->getParameters()->get('_controller');

if (
'EzSystems\EzPlatformAdminUiBundle\Controller\ContentEditController::translateAction' !== $controllerAction
'Ibexa\Bundle\AdminUi\Controller\ContentEditController::translateAction' !== $controllerAction
) {
return;
}
Expand Down

0 comments on commit 2131304

Please sign in to comment.