diff options
author | Nathan Guse <nathaniel.guse@gmail.com> | 2012-09-27 18:56:15 -0500 |
---|---|---|
committer | Nathan Guse <nathaniel.guse@gmail.com> | 2012-09-27 18:56:15 -0500 |
commit | d07cb7b2af2cb7f4ec9459e035561e89f1e69f5c (patch) | |
tree | 1b926c471a16eb916f49910d8925453de0bf3156 /phpBB | |
parent | c841aa34b64f3c83dfa8c637f2b20ae472c6de4d (diff) | |
download | forums-d07cb7b2af2cb7f4ec9459e035561e89f1e69f5c.tar forums-d07cb7b2af2cb7f4ec9459e035561e89f1e69f5c.tar.gz forums-d07cb7b2af2cb7f4ec9459e035561e89f1e69f5c.tar.bz2 forums-d07cb7b2af2cb7f4ec9459e035561e89f1e69f5c.tar.xz forums-d07cb7b2af2cb7f4ec9459e035561e89f1e69f5c.zip |
[ticket/11103] UCP Notifications module added to db updater
PHPBB3-11103
Diffstat (limited to 'phpBB')
-rw-r--r-- | phpBB/install/database_update.php | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/phpBB/install/database_update.php b/phpBB/install/database_update.php index 1c9070a54a..39544bf9ca 100644 --- a/phpBB/install/database_update.php +++ b/phpBB/install/database_update.php @@ -2465,6 +2465,13 @@ function change_database_data(&$no_updates, $version) 'auth' => '', 'cat' => 'UCP_PROFILE', ), + 'notification_options' => array( + 'base' => 'ucp_notification_options', + 'class' => 'ucp', + 'title' => 'UCP_NOTIFICATION_OPTIONS', + 'auth' => '', + 'cat' => 'UCP_MAIN', + ), ); _add_modules($modules_to_install); @@ -2732,7 +2739,7 @@ function change_database_data(&$no_updates, $version) // After we have calculated the timezones we can delete user_dst column from user table. $db_tools->sql_column_remove(USERS_TABLE, 'user_dst'); } - + if (!isset($config['site_home_url'])) { $config->set('site_home_url', ''); |