From 03e2222dd70c28bcf38bec42f8e383d8d862b94a Mon Sep 17 00:00:00 2001 From: rxu Date: Tue, 4 Jun 2024 00:28:22 +0700 Subject: [PATCH] [ticket/17151] Add core.build_config_template event @changed information The event location's function has been renamed from build_config_template() to phpbb_build_cfg_template(). PHPBB3-17151 --- phpBB/includes/functions_acp.php | 1 + 1 file changed, 1 insertion(+) diff --git a/phpBB/includes/functions_acp.php b/phpBB/includes/functions_acp.php index d2cc39aec8..646d2f34d5 100644 --- a/phpBB/includes/functions_acp.php +++ b/phpBB/includes/functions_acp.php @@ -515,6 +515,7 @@ function phpbb_build_cfg_template(array $tpl_type, string $key, array|object &$n * @var array vars Array with the options for the config * @var array|string tpl The resulting html code we display * @since 3.1.0-a1 + * @changed 4.0.0-a1 The event location's function renamed from build_config_template() to phpbb_build_cfg_template() */ $vars = array('tpl_type', 'key', 'new', 'name', 'vars', 'tpl'); extract($phpbb_dispatcher->trigger_event('core.build_config_template', compact($vars)));