diff options
Diffstat (limited to 'Bugzilla')
-rw-r--r-- | Bugzilla/Template.pm | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |