diff options
author | Byron Jones <glob@mozilla.com> | 2014-11-24 08:57:57 +0100 |
---|---|---|
committer | Byron Jones <glob@mozilla.com> | 2014-11-24 08:57:57 +0100 |
commit | 9bb992c0b0607328cc2356cb35b2d439fd7024af (patch) | |
tree | 13c04c9ff4cac8e05a156c1fc8f61e061cd3158a | |
parent | dca5028d1c21d6754c8a22e3be49734ec25e323b (diff) | |
download | bugzilla-9bb992c0b0607328cc2356cb35b2d439fd7024af.tar.gz bugzilla-9bb992c0b0607328cc2356cb35b2d439fd7024af.tar.xz |
Bug 1102229: custom css stylesheets are not loaded if CONCATENATE_ASSETS is false
-rw-r--r-- | template/en/default/global/header.html.tmpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/template/en/default/global/header.html.tmpl b/template/en/default/global/header.html.tmpl index a558d28ed..04b0ee179 100644 --- a/template/en/default/global/header.html.tmpl +++ b/template/en/default/global/header.html.tmpl @@ -131,7 +131,7 @@ [% IF constants.CONCATENATE_ASSETS %] [% PROCESS format_css_link asset_url = css_sets.unified_custom %] [% ELSE %] - [% FOREACH asset_rul = css_sets.custom %] + [% FOREACH asset_url = css_sets.custom %] [% PROCESS format_css_link %] [% END %] [% END %] |