Skip to content

Commit

Permalink
Fix "Exit Recovery Mode" link (#29833)
Browse files Browse the repository at this point in the history
  • Loading branch information
SharkyKZ committed Jul 5, 2020
1 parent 529aeb7 commit 1f24603
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion administrator/modules/mod_menu/src/Menu/CssMenu.php
Expand Up @@ -142,7 +142,7 @@ public function load($params, $enabled)
$uri = clone Uri::getInstance();
$uri->setVar('recover_menu', 0);

$this->root->addChild(new AdministratorMenuItem(['title' => 'MOD_MENU_RECOVERY_EXIT', 'type' => 'url', 'url' => $uri->toString()]));
$this->root->addChild(new AdministratorMenuItem(['title' => 'MOD_MENU_RECOVERY_EXIT', 'type' => 'url', 'link' => $uri->toString()]));

return $this->root;
}
Expand Down

0 comments on commit 1f24603

Please sign in to comment.