aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/install/install_convert.php
diff options
context:
space:
mode:
authorAndreas Fischer <bantu@phpbb.com>2015-02-11 16:53:25 +0100
committerAndreas Fischer <bantu@phpbb.com>2015-02-11 16:53:25 +0100
commit069738a1f264c2966b78473a84dba90b4e6d3051 (patch)
tree657c434ab8aefa461a262f7a76b1a3405c5d8ce9 /phpBB/install/install_convert.php
parentacf3744297303324490c484156f0bf808e532883 (diff)
parent39a3f4f6c8d31f3310e287a51aea011fadae7931 (diff)
downloadforums-069738a1f264c2966b78473a84dba90b4e6d3051.tar
forums-069738a1f264c2966b78473a84dba90b4e6d3051.tar.gz
forums-069738a1f264c2966b78473a84dba90b4e6d3051.tar.bz2
forums-069738a1f264c2966b78473a84dba90b4e6d3051.tar.xz
forums-069738a1f264c2966b78473a84dba90b4e6d3051.zip
Merge branch 'develop-ascraeus' into develop
* develop-ascraeus: [ticket/13597] Modify variable-variable syntax to be compatible with PHP7
Diffstat (limited to 'phpBB/install/install_convert.php')
-rw-r--r--phpBB/install/install_convert.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/install/install_convert.php b/phpBB/install/install_convert.php
index b1c52a336e..622b162828 100644
--- a/phpBB/install/install_convert.php
+++ b/phpBB/install/install_convert.php
@@ -599,7 +599,7 @@ class install_convert extends module
'S_EXPLAIN' => $vars['explain'],
'S_LEGEND' => false,
'TITLE_EXPLAIN' => ($vars['explain']) ? $lang[$vars['lang'] . '_EXPLAIN'] : '',
- 'CONTENT' => $this->p_master->input_field($config_key, $vars['type'], $$config_key, $options),
+ 'CONTENT' => $this->p_master->input_field($config_key, $vars['type'], ${$config_key}, $options),
)
);
}