diff options
author | Andreas Fischer <bantu@phpbb.com> | 2010-07-08 02:20:25 +0200 |
---|---|---|
committer | Andreas Fischer <bantu@phpbb.com> | 2010-07-08 02:20:25 +0200 |
commit | c79df9700df8fb238ae386e890dd97316bb97fc6 (patch) | |
tree | 83b64bce4e8f69fd5df5f0df413aad81d6749b12 /phpBB/install | |
parent | c592cab9894c601cefc70715ef65250da81a7fdc (diff) | |
parent | 160d1bfd07ce016e34b52588bcbf4c7c71bd7fb0 (diff) | |
download | forums-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.php | 13 |
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; |