From f830cc00a3626b8d90d39a9f92c7f48685531f95 Mon Sep 17 00:00:00 2001 From: Gernot Ploiner Date: Wed, 16 Feb 2022 15:27:04 +0100 Subject: [PATCH] [BUGFIX] remove slash from href --- Classes/Controller/BackendController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Classes/Controller/BackendController.php b/Classes/Controller/BackendController.php index ef37e20..d158f48 100644 --- a/Classes/Controller/BackendController.php +++ b/Classes/Controller/BackendController.php @@ -111,7 +111,7 @@ public function getMailsAsJson(ServerRequestInterface $request): Response $attachementsHtml = []; foreach ($mailAttachements as $attachement) { if ($attachement['url']) { - $attachementsHtml[] = '' . $attachement['name'] . ''; + $attachementsHtml[] = '' . $attachement['name'] . ''; } else { $attachementsHtml[] = '' . $attachement['name'] . ''; }