[1203] fixing tag export

This commit is contained in:
Vincent Malley
2015-06-02 11:09:28 -04:00
parent 727c35d809
commit f9c8087f78
2 changed files with 16 additions and 1 deletions

View File

@ -874,7 +874,7 @@ class Poche
$filename = "wallabag-export-".$this->user->getId()."-".date("Y-m-d").".json";
header('Content-Disposition: attachment; filename='.$filename);
$entries = $this->store->retrieveAll($this->user->getId());
$entries = $this->store->retrieveAllWithTags($this->user->getId());
echo $this->tpl->render('export.twig', array(
'export' => Tools::renderJson($entries),
));