From eec7c87f9b1405b3e415fab66d9a8f8fa727bec2 Mon Sep 17 00:00:00 2001 From: Daniel Ziegenberg Date: Wed, 17 Jan 2024 15:32:47 +0100 Subject: [PATCH] MDL-80648 files: extend xsendfilealiases Add missing entry for custom $CFG->localrequestdir locations in the preconfigured array for $CFG->xsendfilealiases in config-dist.php. Signed-off-by: Daniel Ziegenberg --- config-dist.php | 1 + 1 file changed, 1 insertion(+) diff --git a/config-dist.php b/config-dist.php index fa7807ce25a..31357ef6968 100644 --- a/config-dist.php +++ b/config-dist.php @@ -315,6 +315,7 @@ $CFG->admin = 'admin'; // '/dataroot/' => $CFG->dataroot, // '/cachedir/' => '/var/www/moodle/cache', // for custom $CFG->cachedir locations // '/localcachedir/' => '/var/local/cache', // for custom $CFG->localcachedir locations +// '/localrequestdir/' => '/tmp', // for custom $CFG->localrequestdir locations // '/tempdir/' => '/var/www/moodle/temp', // for custom $CFG->tempdir locations // '/filedir' => '/var/www/moodle/filedir', // for custom $CFG->filedir locations // );