MDL-78379 js: Add missing newline character

This commit is contained in:
Misha Golenkov
2023-07-06 16:18:07 +10:00
parent 7a98a43042
commit 4d1b3728ea
+1 -1
View File
@@ -82,7 +82,7 @@ function requirejs_fix_define(string $modulename, string $js): string {
} else if (!preg_match('/define\s*\(/', $js)) {
echo(
"// JS module '{$modulename}' cannot be loaded, or does not contain a javascript" .
' module in AMD format. "define()" not found.'
' module in AMD format. "define()" not found.' . "\n"
);
}