aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJakub Senko <jakubsenko@gmail.com>2018-09-25 16:52:58 +0200
committerJakub Senko <jakubsenko@gmail.com>2018-10-11 09:30:03 +0200
commit52ffe758887d2321ba84c2f26adfa85e0bfa5624 (patch)
treec64c0cf67030902588726923d2b250f3fa43ecd3
parent001f32da95d4f8697ccc9a6107afc8dc68cbe48e (diff)
downloadforums-52ffe758887d2321ba84c2f26adfa85e0bfa5624.tar
forums-52ffe758887d2321ba84c2f26adfa85e0bfa5624.tar.gz
forums-52ffe758887d2321ba84c2f26adfa85e0bfa5624.tar.bz2
forums-52ffe758887d2321ba84c2f26adfa85e0bfa5624.tar.xz
forums-52ffe758887d2321ba84c2f26adfa85e0bfa5624.zip
[ticket/15554] Add simple_footer_body_after
PHPBB3-15554
-rw-r--r--phpBB/docs/events.md7
-rw-r--r--phpBB/styles/prosilver/template/simple_footer.html2
2 files changed, 9 insertions, 0 deletions
diff --git a/phpBB/docs/events.md b/phpBB/docs/events.md
index 6672353296..e833a3b6d3 100644
--- a/phpBB/docs/events.md
+++ b/phpBB/docs/events.md
@@ -1971,6 +1971,13 @@ simple_footer_after
* Locations:
+ styles/prosilver/template/simple_footer.html
* Since: 3.1.0-a1
+* Purpose: Add content prior to the scripts of the simple footer
+
+simple_footer_body_after
+===
+* Locations:
+ + styles/prosilver/template/simple_footer.html
+* Since: 3.2.4-RC1
* Purpose: Add content directly prior to the `</body>` tag of the simple footer
simple_header_body_before
diff --git a/phpBB/styles/prosilver/template/simple_footer.html b/phpBB/styles/prosilver/template/simple_footer.html
index 907ddd97ba..1ef44d1688 100644
--- a/phpBB/styles/prosilver/template/simple_footer.html
+++ b/phpBB/styles/prosilver/template/simple_footer.html
@@ -34,5 +34,7 @@
{$SCRIPTS}
+{% EVENT simple_footer_body_after %}
+
</body>
</html>