mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-08 12:28:52 +00:00
[ticket/17446] Use array shorthand
PHPBB-17446
This commit is contained in:
parent
8978594d6d
commit
332ecb3d9c
1 changed files with 1 additions and 1 deletions
|
@ -940,7 +940,7 @@ class acp_board
|
||||||
* @var string act_options Options avialbe in the activation method
|
* @var string act_options Options avialbe in the activation method
|
||||||
* @since 3.3.15-RC1
|
* @since 3.3.15-RC1
|
||||||
*/
|
*/
|
||||||
$vars = array('act_ary', 'act_options');
|
$vars = ['act_ary', 'act_options'];
|
||||||
extract($phpbb_dispatcher->trigger_event('core.acp_account_activation_edit_add', compact($vars)));
|
extract($phpbb_dispatcher->trigger_event('core.acp_account_activation_edit_add', compact($vars)));
|
||||||
|
|
||||||
foreach ($act_ary as $key => $data)
|
foreach ($act_ary as $key => $data)
|
||||||
|
|
Loading…
Add table
Reference in a new issue