diff options
author | Andreas Fischer <bantu@phpbb.com> | 2015-02-11 16:53:25 +0100 |
---|---|---|
committer | Andreas Fischer <bantu@phpbb.com> | 2015-02-11 16:53:25 +0100 |
commit | 069738a1f264c2966b78473a84dba90b4e6d3051 (patch) | |
tree | 657c434ab8aefa461a262f7a76b1a3405c5d8ce9 /phpBB/install/install_convert.php | |
parent | acf3744297303324490c484156f0bf808e532883 (diff) | |
parent | 39a3f4f6c8d31f3310e287a51aea011fadae7931 (diff) | |
download | forums-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.php | 2 |
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), ) ); } |