Skip to content
This repository has been archived by the owner on May 30, 2019. It is now read-only.

Commit

Permalink
Merge pull request #462 from elcodi/fix/remove-li-fixtures
Browse files Browse the repository at this point in the history
Removed li's from fixtures
  • Loading branch information
mmoreram committed May 18, 2015
2 parents ff7ad5c + e8f25f4 commit 75dc9a5
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions src/Elcodi/Fixtures/DataFixtures/ORM/Page/PageData.php
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ public function load(ObjectManager $manager)
->create()
->setTitle('Sobre nosotros')
->setPath('sobre-nosotros')
->setContent('<li>Sobre nosotros</li>')
->setContent('Sobre nosotros')
->setMetaTitle('Sobre nosotros')
->setMetaDescription('Sobre nosotros')
->setMetaKeywords('sobre,nosotros')
Expand All @@ -99,31 +99,31 @@ public function load(ObjectManager $manager)
'en' => [
'path' => 'about-us',
'title' => 'About us',
'content' => '<li>About us</li>',
'content' => 'About us',
'metaTitle' => 'About us',
'metaDescription' => 'About us',
'metaKeywords' => 'about,us',
],
'es' => [
'path' => 'sobre-nosotros',
'title' => 'Sobre nosotros',
'content' => '<li>Sobre nosotros</li>',
'content' => 'Sobre nosotros',
'metaTitle' => 'Sobre nosotros',
'metaDescription' => 'Sobre nosotros',
'metaKeywords' => 'sobre,nosotros',
],
'fr' => [
'path' => 'a-propos',
'title' => 'A propos',
'content' => '<li>A propos</li>',
'content' => 'A propos',
'metaTitle' => 'A propos',
'metaDescription' => 'A propos',
'metaKeywords' => 'propos',
],
'ca' => [
'path' => 'sobre-nosaltres',
'title' => 'Sobre nosaltres',
'content' => '<li>Sobre nosaltres</li>',
'content' => 'Sobre nosaltres',
'metaTitle' => 'Sobre nosaltres',
'metaDescription' => 'Sobre nosaltres',
'metaKeywords' => 'sobre,nosaltres',
Expand All @@ -137,7 +137,7 @@ public function load(ObjectManager $manager)
->create()
->setTitle('Términos y condiciones')
->setPath('terminos-y-condiciones')
->setContent('<li>Términos y condiciones</li>')
->setContent('Términos y condiciones')
->setMetaTitle('Términos y condiciones')
->setMetaDescription('Términos y condiciones')
->setMetaKeywords('términos,condiciones')
Expand All @@ -152,31 +152,31 @@ public function load(ObjectManager $manager)
'en' => [
'path' => 'terms-and-conditions',
'title' => 'Terms and conditions',
'content' => '<li>Terms and conditions</li>',
'content' => 'Terms and conditions',
'metaTitle' => 'Terms and conditions',
'metaDescription' => 'Terms and conditions',
'metaKeywords' => 'terms,conditions',
],
'es' => [
'path' => 'terminos-y-condiciones',
'title' => 'Términos y condiciones',
'content' => '<li>Términos y condiciones</li>',
'content' => 'Términos y condiciones',
'metaTitle' => 'Términos y condiciones',
'metaDescription' => 'Términos y condiciones',
'metaKeywords' => 'términos,condiciones',
],
'fr' => [
'path' => 'mentions-legales',
'title' => 'Mentions legales',
'content' => '<li>Mentions legales</li>',
'content' => 'Mentions legales',
'metaTitle' => 'Mentions legales',
'metaDescription' => 'Mentions legales',
'metaKeywords' => 'mentions,legales',
],
'ca' => [
'path' => 'termes-legals',
'title' => 'Termes legals',
'content' => '<li>Termes legals</li>',
'content' => 'Termes legals',
'metaTitle' => 'Termes legals',
'metaDescription' => 'Termes legals',
'metaKeywords' => 'termes,legals',
Expand Down

0 comments on commit 75dc9a5

Please sign in to comment.