1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 05:50:42 +02:00

Merge pull request #5686 from v12mike/ticket/9837

[ticket/9837] Display unapproved posts to their authors
This commit is contained in:
Marc Alexander
2019-11-22 10:56:33 +01:00
11 changed files with 507 additions and 7 deletions

View File

@@ -0,0 +1,24 @@
<?php
/**
*
* This file is part of the phpBB Forum Software package.
*
* @copyright (c) phpBB Limited <https://www.phpbb.com>
* @license GNU General Public License, version 2 (GPL-2.0)
*
* For full copyright and license information, please see
* the docs/CREDITS.txt file.
*
*/
namespace phpbb\db\migration\data\v330;
class add_display_unapproved_posts_config extends \phpbb\db\migration\migration
{
public function update_data()
{
return [
['config.add', ['display_unapproved_posts', 1]],
];
}
}