Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/9.0' into task/e2e-tests-on-9-0
Browse files Browse the repository at this point in the history
  • Loading branch information
grebaldi committed Aug 2, 2023
2 parents 3f2f886 + 375b20a commit 27c6bb4
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Classes/Controller/BackendController.php
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ public function indexAction(string $node = null)
$this->redirectToUri($this->uriBuilder->uriFor('index', [], 'Login', 'Neos.Neos'));
}

$backendControllerInternals = $this->contentRepositoryRegistry->getService(
$backendControllerInternals = $this->contentRepositoryRegistry->buildService(
$siteDetectionResult->contentRepositoryId,
new BackendControllerInternalsFactory()
);
Expand Down
4 changes: 2 additions & 2 deletions Classes/Fusion/Helper/ContentDimensionsHelper.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ class ContentDimensionsHelper implements ProtectedContextAwareInterface
*/
public function contentDimensionsByName(ContentRepositoryId $contentRepositoryId): array
{
$contentDimensionHelperInternals = $this->contentRepositoryRegistry->getService($contentRepositoryId, new ContentDimensionsHelperInternalsFactory());
$contentDimensionHelperInternals = $this->contentRepositoryRegistry->buildService($contentRepositoryId, new ContentDimensionsHelperInternalsFactory());
assert($contentDimensionHelperInternals instanceof ContentDimensionsHelperInternals);
$contentDimensionSource = $contentDimensionHelperInternals->contentDimensionSource;

Expand Down Expand Up @@ -70,7 +70,7 @@ public function contentDimensionsByName(ContentRepositoryId $contentRepositoryId
*/
public function allowedPresetsByName(DimensionSpacePoint $dimensions, ContentRepositoryId $contentRepositoryId): array
{
$contentDimensionHelperInternals = $this->contentRepositoryRegistry->getService($contentRepositoryId, new ContentDimensionsHelperInternalsFactory());
$contentDimensionHelperInternals = $this->contentRepositoryRegistry->buildService($contentRepositoryId, new ContentDimensionsHelperInternalsFactory());
$contentDimensionSource = $contentDimensionHelperInternals->contentDimensionSource;

// TODO: re-implement this here; currently EVERYTHING is allowed!!
Expand Down
2 changes: 1 addition & 1 deletion Resources/Private/Translations/nl/Main.xlf
Original file line number Diff line number Diff line change
Expand Up @@ -517,7 +517,7 @@
</trans-unit>
<trans-unit id="ckeditor__toolbar__link__formatOptions" xml:space="preserve">
<source>Format options</source>
<target state="needs-translation">Opmaakopties</target>
<target state="translated">Opmaakopties</target>
</trans-unit>
</body>
</file>
Expand Down

0 comments on commit 27c6bb4

Please sign in to comment.