From e6359d29d155af69ed793b062b530638e6748a9a Mon Sep 17 00:00:00 2001 From: 3D-I Date: Thu, 26 Aug 2021 02:18:46 +0200 Subject: [PATCH] [ticket/16857] Remove unused settings in acp_board Add migration remove_flash_v2 PHPBB3-16857 --- .../migration/data/v400/remove_flash_v2.php | 39 +++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 phpBB/phpbb/db/migration/data/v400/remove_flash_v2.php diff --git a/phpBB/phpbb/db/migration/data/v400/remove_flash_v2.php b/phpBB/phpbb/db/migration/data/v400/remove_flash_v2.php new file mode 100644 index 0000000000..5312cc7c83 --- /dev/null +++ b/phpBB/phpbb/db/migration/data/v400/remove_flash_v2.php @@ -0,0 +1,39 @@ + +* @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_flash_v2 extends migration +{ + public function effectively_installed() + { + return !$this->config->offsetExists('max_post_img_width'); + } + + public static function depends_on() + { + return [ + '\phpbb\db\migration\data\v400\remove_flash', + ]; + } + + public function update_data() + { + return [ + ['config.remove', ['max_post_img_width']], + ['config.remove', ['max_post_img_height']], + ]; + } +}