aboutsummaryrefslogtreecommitdiffhomepage
path: root/inc/poche/Poche.class.php
diff options
context:
space:
mode:
Diffstat (limited to 'inc/poche/Poche.class.php')
-rwxr-xr-xinc/poche/Poche.class.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/inc/poche/Poche.class.php b/inc/poche/Poche.class.php
index 4fb028ff..0754d659 100755
--- a/inc/poche/Poche.class.php
+++ b/inc/poche/Poche.class.php
@@ -896,7 +896,7 @@ class Poche
896 $filename = "wallabag-export-".$this->user->getId()."-".date("Y-m-d").".json"; 896 $filename = "wallabag-export-".$this->user->getId()."-".date("Y-m-d").".json";
897 header('Content-Disposition: attachment; filename='.$filename); 897 header('Content-Disposition: attachment; filename='.$filename);
898 898
899 $entries = $this->store->retrieveAll($this->user->getId()); 899 $entries = $this->store->retrieveAllWithTags($this->user->getId());
900 echo $this->tpl->render('export.twig', array( 900 echo $this->tpl->render('export.twig', array(
901 'export' => Tools::renderJson($entries), 901 'export' => Tools::renderJson($entries),
902 )); 902 ));