From ce8f933da6b38bf4391a0f5d0cc84cc1015f1f58 Mon Sep 17 00:00:00 2001 From: mjansen Date: Thu, 10 Sep 2026 16:23:14 +0200 Subject: [PATCH] [Fix] FileDelivery: Correct typo breaking file save logic --- components/ILIAS/FileDelivery/src/Delivery/LegacyDelivery.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/ILIAS/FileDelivery/src/Delivery/LegacyDelivery.php b/components/ILIAS/FileDelivery/src/Delivery/LegacyDelivery.php index 7c1ab82fef43..f204c2a5dac7 100755 --- a/components/ILIAS/FileDelivery/src/Delivery/LegacyDelivery.php +++ b/components/ILIAS/FileDelivery/src/Delivery/LegacyDelivery.php @@ -78,6 +78,6 @@ protected function deliver( $r, Streams::ofResource(fopen($path_to_file, 'rb')) ); - $this - $this->saveAndClose($r, $delete_file ? $path_to_file : null); + $this->saveAndClose($r, $delete_file ? $path_to_file : null); } }