Issue #2548725 by pwolanin, catch, dawehner, mradcliffe: Fix regression to...
Issue #2548725 by pwolanin, catch, dawehner, mradcliffe: Fix regression to menu serialization in upgrade path that causes thousands of errors in PostgreSQL
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
$sandbox['max']=$database->query('SELECT COUNT(mlid) FROM {menu_tree}')
->fetchField();
}
$menu_links=$database->queryRange('SELECT mlid, title, description FROM {menu_tree} ORDER BY mlid ASC',$sandbox['current'],$sandbox['current']+50)
$menu_links=$database->queryRange('SELECT mlid, system_update_8001_title AS title, system_update_8001_description AS description FROM {menu_tree} ORDER BY mlid ASC',$sandbox['current'],$sandbox['current']+50)
->fetchAllAssoc('mlid');
foreach($menu_linksas$menu_link){
...
...
@@ -1226,8 +1246,10 @@ function system_update_8001(&$sandbox = NULL) {