Compare commits

..

No commits in common. "7e24eff9b21b5373f2903cf893d6f0497f691490" and "3b526e98a707edbfd1d87a26ab2bd7c0b5a2cd4a" have entirely different histories.

2 changed files with 5 additions and 5 deletions

File diff suppressed because one or more lines are too long

View File

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