Skip to content

Commit 8781b4a

Browse files
committed
fixed edge case in the menu fixtures
1 parent 76fdfa8 commit 8781b4a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Sandbox/MainBundle/DataFixtures/PHPCR/LoadMenuData.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ public function load(ObjectManager $dm)
6565
$singlelocale = $this->createMenuNode($dm, $main, 'singlelocale-item', array('en' => 'singlelocale'), $dm->find(null, "$content_path/singlelocale"));
6666
$this->createMenuNode($dm, $singlelocale, 'singlelocale-sub-item', array('en' => 'singlelocale child'), $dm->find(null, "$content_path/singlelocale"));
6767

68-
$seo = $this->createMenuNode($dm, $main, 'seo', array('SEO'), $dm->find(null, "$content_path/simple-seo-example"));
68+
$seo = $this->createMenuNode($dm, $main, 'seo', 'SEO', $dm->find(null, "$content_path/simple-seo-example"));
6969
$this->createMenuNode($dm, $seo, 'simple-seo-example', array('en' => 'Seo-Simple-Content'), $dm->find(null, "$content_path/simple-seo-example"));
7070
$this->createMenuNode($dm, $seo, 'demo-seo-extractor', array('en' => 'Seo-Extractor'), $dm->find(null, "$content_path/demo-seo-extractor"));
7171
$this->createMenuNode($dm, $seo, 'simple-seo-property', array('en' => 'Seo-Extra-Properties'), $dm->find(null, "$content_path/simple-seo-property"));

0 commit comments

Comments
 (0)