Issue #2100753 by Berdir: Fixed route_parameters break lazy-save logic in MenuLinkStorageController::save().
parent
c42983a0ee
commit
53e17bb855
|
@ -2851,6 +2851,7 @@ function _menu_navigation_links_rebuild($menu) {
|
||||||
if ($existing_item) {
|
if ($existing_item) {
|
||||||
$existing_item = reset($existing_item);
|
$existing_item = reset($existing_item);
|
||||||
$existing_item->options = unserialize($existing_item->options);
|
$existing_item->options = unserialize($existing_item->options);
|
||||||
|
$existing_item->route_parameters = unserialize($existing_item->route_parameters);
|
||||||
|
|
||||||
$router_item['mlid'] = $existing_item->mlid;
|
$router_item['mlid'] = $existing_item->mlid;
|
||||||
$router_item['uuid'] = $existing_item->uuid;
|
$router_item['uuid'] = $existing_item->uuid;
|
||||||
|
|
Loading…
Reference in New Issue