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
1 changed files with 3 additions and 1 deletions

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),
));