aboutsummaryrefslogtreecommitdiff
path: root/cli/export-zip-for-user.php
diff options
context:
space:
mode:
authorGravatar Alexandre Alapetite <alexandre@alapetite.fr> 2019-01-16 22:26:43 +0100
committerGravatar GitHub <noreply@github.com> 2019-01-16 22:26:43 +0100
commit743c1b740bd8ec0b70f7058d4b52101b346a5e9c (patch)
tree7d7c3145ee35b7b37dfc7cf0b7848e85bd3343be /cli/export-zip-for-user.php
parent4355849ec36efb3aa4b711912abd71e30cf2d5ee (diff)
Export labels (#2217)
* Export labels https://github.com/FreshRSS/FreshRSS/issues/2196 * Small fixes * Backport code from 1.14.0 https://github.com/FreshRSS/FreshRSS/pull/2199/commits/4888f919f104b2d170302565e481a0b731eb4145 * More fixes
Diffstat (limited to 'cli/export-zip-for-user.php')
-rwxr-xr-xcli/export-zip-for-user.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/export-zip-for-user.php b/cli/export-zip-for-user.php
index 916ecbb45..86113d9fa 100755
--- a/cli/export-zip-for-user.php
+++ b/cli/export-zip-for-user.php
@@ -19,7 +19,7 @@ $importController = new FreshRSS_importExport_Controller();
$ok = false;
try {
- $ok = $importController->exportFile(true, true, true,
+ $ok = $importController->exportFile(true, true, true, true,
empty($options['max-feed-entries']) ? 100 : intval($options['max-feed-entries']),
$username);
} catch (FreshRSS_ZipMissing_Exception $zme) {