summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorMartin Vuille <jpmv27@yahoo.com>2024-03-03 14:47:56 -0500
committerBenjamin Brahmer <info@b-brahmer.de>2024-03-13 12:43:05 +0100
commit847556cda2a5144da4f450dae0eec9f3b072c5bf (patch)
tree27e7faa6a501b5d0465e9d55ef4f56a1796bf916 /lib
parent11a9b16b0a6fa60d1e839abb9ad4ec573ac9777e (diff)
Fix deprecated variable reference
Signed-off-by: Martin Vuille <jpmv27@yahoo.com>
Diffstat (limited to 'lib')
-rw-r--r--lib/Controller/ExportController.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/Controller/ExportController.php b/lib/Controller/ExportController.php
index 959881888..9be9542ab 100644
--- a/lib/Controller/ExportController.php
+++ b/lib/Controller/ExportController.php
@@ -61,7 +61,7 @@ class ExportController extends Controller
return new DataDownloadResponse(
$this->opmlService->export($this->getUserId()),
- "subscriptions-${date}.opml",
+ "subscriptions-{$date}.opml",
'text/xml'
);
}