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:
parent
7719346328
commit
c8de7ab94c
4 changed files with 5 additions and 5 deletions
|
@ -143,7 +143,7 @@ class TagController extends Controller
|
|||
'form' => null,
|
||||
'entries' => $entries,
|
||||
'currentPage' => $page,
|
||||
'tag' => $tag->getLabel(),
|
||||
'tag' => $tag->getSlug(),
|
||||
]);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue