diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2013-09-13 16:48:28 +0200 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2013-09-13 16:48:28 +0200 |
commit | 958f3e950309c6275ae2872ce9c29c89303cf7be (patch) | |
tree | c5647f529d8e03bc08e837c6a4fbe9636e3b08b7 /phpBB/phpbb/db/migration | |
parent | 16c6e439149cee19b84ab809e913eb41bc5f4fd9 (diff) | |
parent | ee44dff3be8510b55984eef9e7fa7f261333ef1e (diff) | |
download | forums-958f3e950309c6275ae2872ce9c29c89303cf7be.tar forums-958f3e950309c6275ae2872ce9c29c89303cf7be.tar.gz forums-958f3e950309c6275ae2872ce9c29c89303cf7be.tar.bz2 forums-958f3e950309c6275ae2872ce9c29c89303cf7be.tar.xz forums-958f3e950309c6275ae2872ce9c29c89303cf7be.zip |
Merge remote-tracking branch 'imkingdavid/ticket/11824' into develop
Diffstat (limited to 'phpBB/phpbb/db/migration')
-rw-r--r-- | phpBB/phpbb/db/migration/data/310/mod_rewrite.php | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/phpBB/phpbb/db/migration/data/310/mod_rewrite.php b/phpBB/phpbb/db/migration/data/310/mod_rewrite.php new file mode 100644 index 0000000000..85ce25abf3 --- /dev/null +++ b/phpBB/phpbb/db/migration/data/310/mod_rewrite.php @@ -0,0 +1,25 @@ +<?php +/** +* +* @package migration +* @copyright (c) 2013 phpBB Group +* @license http://opensource.org/licenses/gpl-license.php GNU Public License v2 +* +*/ + +class phpbb_db_migration_data_310_mod_rewrite extends phpbb_db_migration +{ + static public function depends_on() + { + return array( + 'phpbb_db_migration_data_310_dev', + ); + } + + public function update_data() + { + return array( + array('config.add', array('enable_mod_rewrite', '0')), + ); + } +} |