aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/functions_acp.php
diff options
context:
space:
mode:
authorMarc Alexander <admin@m-a-styles.de>2015-10-12 19:26:59 +0200
committerMarc Alexander <admin@m-a-styles.de>2015-10-12 19:41:17 +0200
commit578ee077c114f63a6de0c277669ba91bd9f1219f (patch)
tree3d07ae23ed94643e0323f926c38a7d130436048b /phpBB/includes/functions_acp.php
parentf3e2bd9273e69445923c940b4588c8e4a7fdf1db (diff)
downloadforums-578ee077c114f63a6de0c277669ba91bd9f1219f.tar
forums-578ee077c114f63a6de0c277669ba91bd9f1219f.tar.gz
forums-578ee077c114f63a6de0c277669ba91bd9f1219f.tar.bz2
forums-578ee077c114f63a6de0c277669ba91bd9f1219f.tar.xz
forums-578ee077c114f63a6de0c277669ba91bd9f1219f.zip
[ticket/14234] Fix change version and remove more references
PHPBB3-14234
Diffstat (limited to 'phpBB/includes/functions_acp.php')
-rw-r--r--phpBB/includes/functions_acp.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/functions_acp.php b/phpBB/includes/functions_acp.php
index b6f9de98f3..9ed20cd450 100644
--- a/phpBB/includes/functions_acp.php
+++ b/phpBB/includes/functions_acp.php
@@ -398,12 +398,12 @@ function build_cfg_template($tpl_type, $key, &$new, $config_key, $vars)
* @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
+ * @change 3.2.0-a1 Replaced new with new_ary
*/
$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);
+ unset($new_ary);
return $tpl;
}