aboutsummaryrefslogtreecommitdiffhomepage
path: root/inc/poche/Poche.class.php
diff options
context:
space:
mode:
authorVincent Malley <vincent.malley@insalien.org>2015-06-02 11:09:28 -0400
committerVincent Malley <vincent.malley@insalien.org>2015-06-02 11:09:28 -0400
commitf9c8087f787b6ac38ca2c3b6a876a803860b8991 (patch)
tree4a119b976d0bcf4145c01774a37e05e933523848 /inc/poche/Poche.class.php
parent727c35d8096c7690f66f2a815af3e8cabae00399 (diff)
downloadwallabag-f9c8087f787b6ac38ca2c3b6a876a803860b8991.tar.gz
wallabag-f9c8087f787b6ac38ca2c3b6a876a803860b8991.tar.zst
wallabag-f9c8087f787b6ac38ca2c3b6a876a803860b8991.zip
[1203] fixing tag export
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 465d9f95..d297807a 100755
--- a/inc/poche/Poche.class.php
+++ b/inc/poche/Poche.class.php
@@ -874,7 +874,7 @@ class Poche
874 $filename = "wallabag-export-".$this->user->getId()."-".date("Y-m-d").".json"; 874 $filename = "wallabag-export-".$this->user->getId()."-".date("Y-m-d").".json";
875 header('Content-Disposition: attachment; filename='.$filename); 875 header('Content-Disposition: attachment; filename='.$filename);
876 876
877 $entries = $this->store->retrieveAll($this->user->getId()); 877 $entries = $this->store->retrieveAllWithTags($this->user->getId());
878 echo $this->tpl->render('export.twig', array( 878 echo $this->tpl->render('export.twig', array(
879 'export' => Tools::renderJson($entries), 879 'export' => Tools::renderJson($entries),
880 )); 880 ));