1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 22:10:45 +02:00

Merge pull request #6702 from marc1706/ticket/16777

[ticket/16777] Remove remainders of max image size
This commit is contained in:
Marc Alexander
2024-09-29 20:47:40 +02:00
committed by GitHub
10 changed files with 38 additions and 20 deletions

View File

@@ -0,0 +1,34 @@
<?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\v400;
use phpbb\db\migration\migration;
class remove_max_img_size extends migration
{
public static function depends_on(): array
{
return [
'\phpbb\db\migration\data\v400\dev',
];
}
public function update_data(): array
{
return [
['config.remove', ['max_sig_img_width']],
['config.remove', ['max_sig_img_height']],
];
}
}