From c3c3a1fe0fa0a35ffc1d47ee7c992d7363efec1d Mon Sep 17 00:00:00 2001 From: Andrew Nicols Date: Thu, 24 Nov 2022 16:40:46 +0800 Subject: [PATCH] MDL-76468 output: Correct slasharg URL for theme stylesheet --- lib/outputlib.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/outputlib.php b/lib/outputlib.php index 79e0d078ee4..6dc24b30054 100644 --- a/lib/outputlib.php +++ b/lib/outputlib.php @@ -941,7 +941,7 @@ class theme_config { $url = new moodle_url("/theme/styles.php"); if (!empty($CFG->slasharguments)) { - $url->set_slashargument("{$this->name}/{$rev}/{$type}", 'noparam', true); + $url->set_slashargument("/{$this->name}/{$rev}/{$type}", 'noparam', true); } else { $url->params([ 'theme' => $this->name,