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

[ticket/16764] Remove remote upload certificate validation

PHPBB3-16764
This commit is contained in:
Marc Alexander
2021-04-26 20:38:03 +02:00
parent e1bbef7774
commit 0ccce7c4f8
4 changed files with 33 additions and 4 deletions

View File

@@ -0,0 +1,33 @@
<?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\container_aware_migration;
class remove_remote_upload extends container_aware_migration
{
public static function depends_on()
{
return [
'\phpbb\db\migration\data\v320\remote_upload_validation'
];
}
public function update_data()
{
return [
['config.remove', ['remote_upload_verify']],
];
}
}