From 412231454fc6a92e48997b26d5d3bb185020ec6d Mon Sep 17 00:00:00 2001 From: Misha Golenkov Date: Thu, 6 Jul 2023 15:55:31 +1000 Subject: [PATCH] MDL-78379 js: Add missing newline character --- lib/requirejs.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/requirejs.php b/lib/requirejs.php index 84404090085..f503e4b4036 100644 --- a/lib/requirejs.php +++ b/lib/requirejs.php @@ -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" ); }