mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2025-12-13 15:25:59 +00:00
add date suffixes to opml & import_export generated files
This commit is contained in:
@@ -106,11 +106,13 @@ class Import_Export extends Plugin implements IHandler {
|
||||
if (file_exists($exportname)) {
|
||||
header("Content-type: text/xml");
|
||||
|
||||
$timestamp_suffix = date("Y-m-d", filemtime($exportname));
|
||||
|
||||
if (function_exists('gzencode')) {
|
||||
header("Content-Disposition: attachment; filename=TinyTinyRSS_exported.xml.gz");
|
||||
header("Content-Disposition: attachment; filename=TinyTinyRSS_exported_${timestamp_suffix}.xml.gz");
|
||||
echo gzencode(file_get_contents($exportname));
|
||||
} else {
|
||||
header("Content-Disposition: attachment; filename=TinyTinyRSS_exported.xml");
|
||||
header("Content-Disposition: attachment; filename=TinyTinyRSS_exported_${timestamp_suffix}.xml");
|
||||
echo file_get_contents($exportname);
|
||||
}
|
||||
} else {
|
||||
|
||||
Reference in New Issue
Block a user