From c97e64782c6b3b9d176db5b66abae2e240b456c6 Mon Sep 17 00:00:00 2001 From: Dylan William Hardison Date: Mon, 27 Oct 2014 17:10:06 -0400 Subject: Bug 1083081 - javascript concatenation should insert a semicolon between files r=dkl a=glob --- Bugzilla/Template.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Bugzilla/Template.pm b/Bugzilla/Template.pm index 660767afd..7ce1be72b 100644 --- a/Bugzilla/Template.pm +++ b/Bugzilla/Template.pm @@ -575,7 +575,7 @@ sub _concatenate_js { $content =~ s#\n{2,}#\n#g; # blank lines $content =~ s#(^\s+|\s+$)##g; # whitespace at the start/end of file - write_file($file, "/* $files{$source} */\n" . $content . "\n"); + write_file($file, ";/* $files{$source} */\n" . $content . "\n"); } push @minified, $file; } -- cgit v1.2.3-24-g4f1b