diff options
author | David Lawrence <dlawrence@mozilla.com> | 2011-01-21 06:06:40 +0100 |
---|---|---|
committer | David Lawrence <dlawrence@mozilla.com> | 2011-01-21 06:06:40 +0100 |
commit | 7f5eb650ab8f624efe9f4fb6b66c78d8e11539e3 (patch) | |
tree | 040771be371345d791a899bedeba1e90ef683ce6 /template/en/default/global | |
parent | bb5a73e5b97c4b73fc14c66afb939aac55c71990 (diff) | |
download | bugzilla-7f5eb650ab8f624efe9f4fb6b66c78d8e11539e3.tar.gz bugzilla-7f5eb650ab8f624efe9f4fb6b66c78d8e11539e3.tar.xz |
Bug 623608 - Add intro/outro extension hooks to footer.html.tmpl
r/a=mkanat
Diffstat (limited to 'template/en/default/global')
-rw-r--r-- | template/en/default/global/footer.html.tmpl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/template/en/default/global/footer.html.tmpl b/template/en/default/global/footer.html.tmpl index e68ee57c8..661f8afe6 100644 --- a/template/en/default/global/footer.html.tmpl +++ b/template/en/default/global/footer.html.tmpl @@ -33,7 +33,7 @@ #%] <div id="footer"> - <div class="intro"></div> + <div class="intro">[% Hook.process('intro') %]</div> [%# Migration note: the old param 'blurbhtml' goes here %] @@ -41,7 +41,7 @@ [% PROCESS "global/useful-links.html.tmpl" %] - <div class="outro"></div> + <div class="outro">[% Hook.process('outro') %]</div> </div> [% Hook.process("end") %] |