1
0
mirror of https://github.com/moparisthebest/wallabag synced 2024-11-23 17:42:15 -05:00

Final Fix of #570

Adds a date information to the exported data file.
This commit is contained in:
tcit 2014-03-28 16:53:06 +01:00
parent cdada41505
commit ad697686c0

View File

@ -1091,8 +1091,10 @@ class Poche
*/
public function export()
{
$filename = "wallabag-export-".$this->user->getId()."-".date("Y-m-d").".json";
header('Content-Disposition: attachment; filename='.$filename);
$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),
));