diff options
Diffstat (limited to 'cli/export-opml-for-user.php')
| -rwxr-xr-x | cli/export-opml-for-user.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/export-opml-for-user.php b/cli/export-opml-for-user.php index 4866a848f..b78aeff98 100755 --- a/cli/export-opml-for-user.php +++ b/cli/export-opml-for-user.php @@ -23,7 +23,7 @@ $username = cliInitUser($cliOptions->user); fwrite(STDERR, 'FreshRSS exporting OPML for user “' . $username . "”…\n"); $export_service = new FreshRSS_Export_Service($username); -list($filename, $content) = $export_service->generateOpml(); +[$filename, $content] = $export_service->generateOpml(); echo $content; invalidateHttpCache($username); |
