mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-20 07:21:30 +02:00
Merge remote-tracking branch 'imkingdavid/ticket/11824' into develop
This commit is contained in:
25
phpBB/phpbb/db/migration/data/310/mod_rewrite.php
Normal file
25
phpBB/phpbb/db/migration/data/310/mod_rewrite.php
Normal file
@@ -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')),
|
||||
);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user