1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-05 08:17:47 +02:00

Merge branch 'ticket/nickvergessen/9578' into develop-olympus

* ticket/nickvergessen/9578:
  [ticket/9578] ACP Posting tab is missing "Post settings" module.
This commit is contained in:
Andreas Fischer
2010-07-08 02:20:25 +02:00
2 changed files with 14 additions and 1 deletions

View File

@@ -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;