diff options
| author | Nathan Guse <nathaniel.guse@gmail.com> | 2012-09-15 12:00:21 -0500 |
|---|---|---|
| committer | Nathan Guse <nathaniel.guse@gmail.com> | 2012-09-15 12:00:21 -0500 |
| commit | fc6457140cd775cb0f89c803324844d602200c14 (patch) | |
| tree | bba1d70c4c1e29db3723446d0f9171c45aa051d2 /phpBB/install/database_update.php | |
| parent | 9c54465a1331216be1e3369346921dee9148e590 (diff) | |
| parent | 9a92c45ad365629fac658ba566d16097a6eac644 (diff) | |
| download | forums-fc6457140cd775cb0f89c803324844d602200c14.tar forums-fc6457140cd775cb0f89c803324844d602200c14.tar.gz forums-fc6457140cd775cb0f89c803324844d602200c14.tar.bz2 forums-fc6457140cd775cb0f89c803324844d602200c14.tar.xz forums-fc6457140cd775cb0f89c803324844d602200c14.zip | |
Merge branch 'develop' of git://github.com/phpbb/phpbb3 into ticket/11103
Diffstat (limited to 'phpBB/install/database_update.php')
| -rw-r--r-- | phpBB/install/database_update.php | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/phpBB/install/database_update.php b/phpBB/install/database_update.php index 5048403881..1c9070a54a 100644 --- a/phpBB/install/database_update.php +++ b/phpBB/install/database_update.php @@ -2732,6 +2732,12 @@ 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', ''); + $config->set('site_home_text', ''); + } break; } |
