aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoas Schilling <nickvergessen@gmx.de>2014-10-02 15:38:27 +0200
committerJoas Schilling <nickvergessen@gmx.de>2014-10-02 15:38:27 +0200
commit6cb5e6c3b47e57ff81a80bf08db2a469b6e26020 (patch)
treed2c24bb2f7adc60a3a476168b609467f85d33902
parentea1eff4fa55f2e67b2ed5448541cabb9e3fda388 (diff)
parent240ff277070844a11bc541c750818af568960d20 (diff)
downloadforums-6cb5e6c3b47e57ff81a80bf08db2a469b6e26020.tar
forums-6cb5e6c3b47e57ff81a80bf08db2a469b6e26020.tar.gz
forums-6cb5e6c3b47e57ff81a80bf08db2a469b6e26020.tar.bz2
forums-6cb5e6c3b47e57ff81a80bf08db2a469b6e26020.tar.xz
forums-6cb5e6c3b47e57ff81a80bf08db2a469b6e26020.zip
Merge branch 'develop-ascraeus' into develop
-rw-r--r--phpBB/includes/functions.php12
1 files changed, 12 insertions, 0 deletions
diff --git a/phpBB/includes/functions.php b/phpBB/includes/functions.php
index a502314ded..7700dcfd27 100644
--- a/phpBB/includes/functions.php
+++ b/phpBB/includes/functions.php
@@ -5290,6 +5290,18 @@ function page_footer($run_cron = true, $display_template = true, $exit_handler =
}
}
+ /**
+ * Execute code and/or modify output before displaying the template.
+ *
+ * @event core.page_footer_after
+ * @var bool display_template Whether or not to display the template
+ * @var bool exit_handler Whether or not to run the exit_handler()
+ *
+ * @since 3.1.0-RC5
+ */
+ $vars = array('display_template', 'exit_handler');
+ extract($phpbb_dispatcher->trigger_event('core.page_footer_after', compact($vars)));
+
if ($display_template)
{
$template->display('body');