diff options
author | Andreas Fischer <bantu@phpbb.com> | 2014-06-16 01:37:21 +0200 |
---|---|---|
committer | Andreas Fischer <bantu@phpbb.com> | 2014-06-16 01:37:21 +0200 |
commit | 663c375f5c1547e80f79aae0775eed0039956699 (patch) | |
tree | 804b9afc203c9e06e34a81879a62ec639c16d8d1 /phpBB/install/index.php | |
parent | f27be59cf1bc97ac9da6bc7f963b1e0c44ee248b (diff) | |
parent | 5a320adc75faffe27d9d0b822e30106f1d27f2c2 (diff) | |
download | forums-663c375f5c1547e80f79aae0775eed0039956699.tar forums-663c375f5c1547e80f79aae0775eed0039956699.tar.gz forums-663c375f5c1547e80f79aae0775eed0039956699.tar.bz2 forums-663c375f5c1547e80f79aae0775eed0039956699.tar.xz forums-663c375f5c1547e80f79aae0775eed0039956699.zip |
Merge pull request #2605 from Nicofuma/ticket/12724
[ticket/12724] Add Squiz.PHP.Eval in the legacy ruleset
* Nicofuma/ticket/12724:
[ticket/12724] Add Squiz.PHP.Eval in the legacy ruleset
Diffstat (limited to 'phpBB/install/index.php')
-rw-r--r-- | phpBB/install/index.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/phpBB/install/index.php b/phpBB/install/index.php index 43970029cb..bff7b75b18 100644 --- a/phpBB/install/index.php +++ b/phpBB/install/index.php @@ -752,12 +752,16 @@ class module break; case 'select': + // @codingStandardsIgnoreStart eval('$s_options = ' . str_replace('{VALUE}', $value, $options) . ';'); + // @codingStandardsIgnoreEnd $tpl = '<select id="' . $name . '" name="' . $name . '">' . $s_options . '</select>'; break; case 'custom': + // @codingStandardsIgnoreStart eval('$tpl = ' . str_replace('{VALUE}', $value, $options) . ';'); + // @codingStandardsIgnoreEnd break; default: |