forked from wallabag/wallabag
Fixed export by tags with a tag which contains space
This commit is contained in:
@ -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);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user