Skip to content

Commit 7030adc

Browse files
committed
terminate early
1 parent 37d76a8 commit 7030adc

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

classes/MLPage.php

+3-4
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,9 @@ class MLPage
1919
public static function resolveMenuItem(object $item, string $url, Theme $theme): ?array
2020
{
2121
$result = CmsPage::resolveMenuItem($item, $url, $theme);
22+
$locales = Locale::listEnabled();
2223

23-
if ($result && ($page = CmsPage::loadCached($theme, $item->reference))) {
24-
25-
$locales = Locale::listEnabled();
24+
if (count($locales) > 1 && $result && ($page = CmsPage::loadCached($theme, $item->reference))) {
2625
$defaultLocale = Locale::getDefault();
2726

2827
$alternateLinks = [];
@@ -31,7 +30,7 @@ public static function resolveMenuItem(object $item, string $url, Theme $theme):
3130
$alternateLinks[$locale] = Url::to($pageUrl);
3231
}
3332

34-
if (count($alternateLinks) > 1) {
33+
if ($alternateLinks) {
3534
$result['alternateLinks'] = $alternateLinks;
3635
}
3736
}

0 commit comments

Comments
 (0)