mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-08 17:56:52 +02:00
merging r8373 into 3.0 branch: adding a new option to hide the entire list of subforums on listforums
git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@8374 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
@@ -10,7 +10,7 @@
|
||||
|
||||
$updates_to_version = '3.0.0';
|
||||
|
||||
// Return if we "just include it" to find out for which version the database update is responsuble for
|
||||
// Return if we "just include it" to find out for which version the database update is responsible for
|
||||
if (defined('IN_PHPBB') && defined('IN_INSTALL'))
|
||||
{
|
||||
return;
|
||||
@@ -473,6 +473,15 @@ $database_update_info = array(
|
||||
),
|
||||
),
|
||||
),
|
||||
// Changes from 3.0.0 to the next version
|
||||
'3.0.0' => array(
|
||||
// Add the following columns
|
||||
'add_columns' => array(
|
||||
FORUMS_TABLE => array(
|
||||
'display_subforum_list' => array('BOOL', 1),
|
||||
),
|
||||
),
|
||||
),
|
||||
);
|
||||
|
||||
// Determine mapping database type
|
||||
|
Reference in New Issue
Block a user