Issue #2068349 by pcambra, swastik1608: Convert menu link SQL queries to the Entity Query API.

8.0.x
Alex Pott 2014-03-24 12:28:22 +01:00
parent c8cfae7fd7
commit 108789c919
1 changed files with 2 additions and 2 deletions

View File

@ -1783,8 +1783,8 @@ function _menu_set_expanded_menus() {
->groupBy('menu_name')
->execute();
// Flattern the resulting array.
foreach($result as $k=>$v) {
// Flatten the resulting array.
foreach($result as $k => $v) {
$names[$k] = $v['menu_name'];
}