diff options
| author | Tristan Darricau <github@nicofuma.fr> | 2014-05-12 17:23:50 +0200 |
|---|---|---|
| committer | Tristan Darricau <github@nicofuma.fr> | 2014-05-28 22:19:03 +0200 |
| commit | 8dc10d6971ede7fbc63fb3fd92512f95d9ec5dfb (patch) | |
| tree | 93cd7a5f42e1a92f43d39c718bf32ee071399a65 /phpBB/phpbb/db | |
| parent | f4d598559f28ef2f16b47d7e33d90305fd42173e (diff) | |
| download | forums-8dc10d6971ede7fbc63fb3fd92512f95d9ec5dfb.tar forums-8dc10d6971ede7fbc63fb3fd92512f95d9ec5dfb.tar.gz forums-8dc10d6971ede7fbc63fb3fd92512f95d9ec5dfb.tar.bz2 forums-8dc10d6971ede7fbc63fb3fd92512f95d9ec5dfb.tar.xz forums-8dc10d6971ede7fbc63fb3fd92512f95d9ec5dfb.zip | |
[ticket/11366] Add $config['extension_force_unstable']
PHPBB3-11366
Diffstat (limited to 'phpBB/phpbb/db')
| -rw-r--r-- | phpBB/phpbb/db/migration/data/v310/extensions_version_check_force_unstable.php | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/phpBB/phpbb/db/migration/data/v310/extensions_version_check_force_unstable.php b/phpBB/phpbb/db/migration/data/v310/extensions_version_check_force_unstable.php new file mode 100644 index 0000000000..5941c3aa54 --- /dev/null +++ b/phpBB/phpbb/db/migration/data/v310/extensions_version_check_force_unstable.php @@ -0,0 +1,25 @@ +<?php +/** +* +* @package migration +* @copyright (c) 2012 phpBB Group +* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2 +* +*/ + +namespace phpbb\db\migration\data\v310; + +class extensions_version_check_force_unstable extends \phpbb\db\migration\migration +{ + static public function depends_on() + { + return array('\phpbb\db\migration\data\v310\dev'); + } + + public function update_data() + { + return array( + array('config.add', array('extension_force_unstable', false)), + ); + } +} |
