1
0
mirror of https://github.com/moparisthebest/wallabag synced 2024-08-13 16:54:00 -04:00
Forces the download of the data exported file as a poche-export file.
This commit is contained in:
tcit 2014-03-28 00:57:07 +01:00
parent 04fbe8f5ef
commit b152f2b6ba

View File

@ -1092,6 +1092,7 @@ class Poche
public function export()
{
$entries = $this->store->retrieveAll($this->user->getId());
header('Content-Disposition: attachment; filename=poche-export');
echo $this->tpl->render('export.twig', array(
'export' => Tools::renderJson($entries),
));