1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-30 21:40:43 +02:00

[ticket/9837] Display unapproved posts to their authors

Coding guidelines fixes

PHPBB3-9837
This commit is contained in:
v12mike
2019-11-04 09:21:27 -05:00
committed by Marc Alexander
parent 4d15683733
commit 0f57f3d90d
3 changed files with 79 additions and 78 deletions

View File

@@ -17,8 +17,8 @@ class add_display_unapproved_posts_config extends \phpbb\db\migration\migration
{
public function update_data()
{
return array(
array('config.add', array('display_unapproved_posts', 1)),
);
return [
['config.add', ['display_unapproved_posts', 1]],
];
}
}