[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
This commit is contained in:
rxu 2024-06-04 00:28:22 +07:00
parent a1f236d85e
commit 03e2222dd7
No known key found for this signature in database
GPG key ID: 955F0567380E586A

View file

@ -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)));