diff options
author | Ferdinand Thiessen <opensource@fthiessen.de> | 2023-07-18 13:09:30 +0200 |
---|---|---|
committer | Ferdinand Thiessen <opensource@fthiessen.de> | 2023-07-18 13:10:37 +0200 |
commit | 3b057600d09b8013e14b0c5ea4696fb7eadc6022 (patch) | |
tree | 043c9d5d794512f6424d54447d1d97a1960ceef2 /lib/private/legacy | |
parent | 0e69a6a846dd7dbff6e5fc625d55a125e0684077 (diff) | |
download | nextcloud-server-3b057600d09b8013e14b0c5ea4696fb7eadc6022.tar.gz nextcloud-server-3b057600d09b8013e14b0c5ea4696fb7eadc6022.zip |
fix: Correctly add `module` content type to script tags when scripts with versions are used
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
Diffstat (limited to 'lib/private/legacy')
-rw-r--r-- | lib/private/legacy/template/functions.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/private/legacy/template/functions.php b/lib/private/legacy/template/functions.php index 57c3a834128..bcc0906dcdf 100644 --- a/lib/private/legacy/template/functions.php +++ b/lib/private/legacy/template/functions.php @@ -101,7 +101,8 @@ function emit_script_tag(string $src, string $script_content = '', string $conte */ function emit_script_loading_tags($obj) { foreach ($obj['jsfiles'] as $jsfile) { - $type = str_ends_with($jsfile, '.mjs') ? 'module' : ''; + $fileName = explode('?', $jsfile, 2)[0]; + $type = str_ends_with($fileName, '.mjs') ? 'module' : ''; emit_script_tag($jsfile, '', $type); } if (!empty($obj['inline_ocjs'])) { |