aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/DataFixtures/ORM/LoadTagData.php
diff options
context:
space:
mode:
authorNicolas LÅ“uillet <nicolas@loeuillet.org>2016-12-27 21:26:53 +0100
committerNicolas LÅ“uillet <nicolas@loeuillet.org>2016-12-27 21:26:53 +0100
commitc8de7ab94cb2d8880205c450ebf52d225991df6e (patch)
tree414983268bc46d06dba918d76a4d893289c8bbc1 /src/Wallabag/CoreBundle/DataFixtures/ORM/LoadTagData.php
parent771934632833720c4d0560dc589f22d4f1bdb55e (diff)
downloadwallabag-c8de7ab94cb2d8880205c450ebf52d225991df6e.tar.gz
wallabag-c8de7ab94cb2d8880205c450ebf52d225991df6e.tar.zst
wallabag-c8de7ab94cb2d8880205c450ebf52d225991df6e.zip
Fixed export by tags with a tag which contains space
Diffstat (limited to 'src/Wallabag/CoreBundle/DataFixtures/ORM/LoadTagData.php')
-rw-r--r--src/Wallabag/CoreBundle/DataFixtures/ORM/LoadTagData.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Wallabag/CoreBundle/DataFixtures/ORM/LoadTagData.php b/src/Wallabag/CoreBundle/DataFixtures/ORM/LoadTagData.php
index 09e99f36..6de561e0 100644
--- a/src/Wallabag/CoreBundle/DataFixtures/ORM/LoadTagData.php
+++ b/src/Wallabag/CoreBundle/DataFixtures/ORM/LoadTagData.php
@@ -15,7 +15,7 @@ class LoadTagData extends AbstractFixture implements OrderedFixtureInterface
15 public function load(ObjectManager $manager) 15 public function load(ObjectManager $manager)
16 { 16 {
17 $tag1 = new Tag(); 17 $tag1 = new Tag();
18 $tag1->setLabel('foo'); 18 $tag1->setLabel('foo bar');
19 19
20 $manager->persist($tag1); 20 $manager->persist($tag1);
21 21