1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-10-04 11:41:38 +02:00

[ticket/14234] Use replacement variables instead of references in events

PHPBB3-14234
This commit is contained in:
Marc Alexander
2015-10-12 18:39:29 +02:00
parent a5ab2eb564
commit f90b16df0d
2 changed files with 24 additions and 8 deletions

View File

@@ -383,6 +383,7 @@ function build_cfg_template($tpl_type, $key, &$new, $config_key, $vars)
$tpl .= $vars['append'];
}
$new_ary = $new;
/**
* Overwrite the html code we display for the config value
*
@@ -392,14 +393,17 @@ function build_cfg_template($tpl_type, $key, &$new, $config_key, $vars)
* 1 [optional] => string: size, int: minimum
* 2 [optional] => string: max. length, int: maximum
* @var string key Should be used for the id attribute in html
* @var array new Array with the config values we display
* @var array new_var Array with the config values we display
* @var string name Should be used for the name attribute
* @var array vars Array with the options for the config
* @var string tpl The resulting html code we display
* @since 3.1.0-a1
* @change 3.1.7-RC1 Replaced new with new_ary
*/
$vars = array('tpl_type', 'key', 'new', 'name', 'vars', 'tpl');
$vars = array('tpl_type', 'key', 'new_ary', 'name', 'vars', 'tpl');
extract($phpbb_dispatcher->trigger_event('core.build_config_template', compact($vars)));
$new = $new_ary;
unset($new);
return $tpl;
}