From e3a947fb3da695f841d5fc110a9531888bd34c71 Mon Sep 17 00:00:00 2001 From: Tobias Diekershoff Date: Fri, 11 Oct 2019 11:48:05 +0200 Subject: [PATCH] keep the ToDo hint from delegations --- src/Module/Settings/Uexport.php | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Module/Settings/Uexport.php b/src/Module/Settings/Uexport.php index a0218c6b29..1331466298 100644 --- a/src/Module/Settings/Uexport.php +++ b/src/Module/Settings/Uexport.php @@ -33,6 +33,7 @@ class Uexport extends BaseSettingsModule parent::content(); $args = self::getClass(Arguments::class); if ($args->getArgc() == 3) { + // @TODO Replace with router-provided arguments $action = $args->get(2); header("Content-type: application/json"); header('Content-Disposition: attachment; filename="' . $a->user['nickname'] . '.' . $action . '"');