aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/install
diff options
context:
space:
mode:
authorAndreas Fischer <bantu@phpbb.com>2010-07-08 02:20:25 +0200
committerAndreas Fischer <bantu@phpbb.com>2010-07-08 02:20:25 +0200
commitc79df9700df8fb238ae386e890dd97316bb97fc6 (patch)
tree83b64bce4e8f69fd5df5f0df413aad81d6749b12 /phpBB/install
parentc592cab9894c601cefc70715ef65250da81a7fdc (diff)
parent160d1bfd07ce016e34b52588bcbf4c7c71bd7fb0 (diff)
downloadforums-c79df9700df8fb238ae386e890dd97316bb97fc6.tar
forums-c79df9700df8fb238ae386e890dd97316bb97fc6.tar.gz
forums-c79df9700df8fb238ae386e890dd97316bb97fc6.tar.bz2
forums-c79df9700df8fb238ae386e890dd97316bb97fc6.tar.xz
forums-c79df9700df8fb238ae386e890dd97316bb97fc6.zip
Merge branch 'ticket/nickvergessen/9578' into develop-olympus
* ticket/nickvergessen/9578: [ticket/9578] ACP Posting tab is missing "Post settings" module.
Diffstat (limited to 'phpBB/install')
-rw-r--r--phpBB/install/database_update.php13
1 files changed, 13 insertions, 0 deletions
diff --git a/phpBB/install/database_update.php b/phpBB/install/database_update.php
index 145b6b50ae..9d690cb2f1 100644
--- a/phpBB/install/database_update.php
+++ b/phpBB/install/database_update.php
@@ -1683,6 +1683,19 @@ function change_database_data(&$no_updates, $version)
}
$db->sql_freeresult($result);
+ // Install modules
+ $modules_to_install = array(
+ 'post' => array(
+ 'base' => 'board',
+ 'class' => 'acp',
+ 'title' => 'ACP_POST_SETTINGS',
+ 'auth' => 'acl_a_board',
+ 'cat' => 'ACP_MESSAGES',
+ 'after' => array('message', 'ACP_MESSAGE_SETTINGS')
+ ),
+ );
+
+ _add_modules($modules_to_install);
$no_updates = false;
break;