diff options
| author | André Noack <noack@data-quest.de> | 2025-01-03 09:26:40 +0000 |
|---|---|---|
| committer | André Noack <noack@data-quest.de> | 2025-01-03 09:26:40 +0000 |
| commit | c70749a61392eae042f40ce63de34b6359deb3f8 (patch) | |
| tree | a879dad631c4c18d3683dc0f0607a090e6b1acd2 | |
| parent | 373b28b6dc7fd66fb42cc050f733d8b95ca856a7 (diff) | |
Resolve #5055 "Download von Dateien ist kaputt"
Closes #5055
Merge request studip/studip!3797
| -rw-r--r-- | public/sendfile.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/public/sendfile.php b/public/sendfile.php index 6c5d120..b9832a3 100644 --- a/public/sendfile.php +++ b/public/sendfile.php @@ -43,6 +43,7 @@ $sess = sess(); $auth = auth(); $auth->setNobody(true); $sess->start(); +$auth->start(); //Load plugins, unless they are disabled via an URL parameter. if (Request::int('disable_plugins') !== null && ($GLOBALS['user']->id === 'nobody' || $GLOBALS['perm']->have_perm('root'))) { |
