1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-10 18:54:08 +02:00

[ticket/13597] Modify variable-variable syntax to be compatible with PHP7

PHPBB3-13597
This commit is contained in:
Marc Alexander
2015-02-11 12:03:54 +01:00
parent c6a371531b
commit 3df25babce
7 changed files with 14 additions and 14 deletions

View File

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