1
0
Fork 0
mirror of https://github.com/wallabag/wallabag.git synced 2025-07-22 17:18:37 +00:00

Fixed export by tags with a tag which contains space

This commit is contained in:
Nicolas Lœuillet 2016-12-27 21:26:53 +01:00
parent 7719346328
commit c8de7ab94c
No known key found for this signature in database
GPG key ID: BDC1EFB5CA0145F2
4 changed files with 5 additions and 5 deletions

View file

@ -143,7 +143,7 @@ class TagController extends Controller
'form' => null,
'entries' => $entries,
'currentPage' => $page,
'tag' => $tag->getLabel(),
'tag' => $tag->getSlug(),
]);
}
}

View file

@ -15,7 +15,7 @@ class LoadTagData extends AbstractFixture implements OrderedFixtureInterface
public function load(ObjectManager $manager)
{
$tag1 = new Tag();
$tag1->setLabel('foo');
$tag1->setLabel('foo bar');
$manager->persist($tag1);