Compare commits

..

No commits in common. "4def89678ebdc1701b62e23e319f7c5762d7ea66" and "69401646a6536c2d24063db902b42c16ddf74543" have entirely different histories.

1 changed files with 4 additions and 4 deletions

View File

@ -58,12 +58,12 @@ if (count($items[0]) == 0) {
// we did not retrieve a menu from the wordpress site // we did not retrieve a menu from the wordpress site
// let's create a default menu // let's create a default menu
if ($wordpress_site) { if ($wordpress_site) {
$collections_item = [ $project_item = [
"id" => 1, "id" => 1,
"title" => "Collections", "title" => "Project",
"url" => "/" "url" => $wordpress_site
]; ];
$items[0][1] = $collections_item; $items[0][1] = $project_item;
} }
$login_item = [ $login_item = [
"id" => 2, "id" => 2,