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

[ticket/9578] ACP Posting tab is missing "Post settings" module.

PHPBB3-9578
This commit is contained in:
Joas Schilling
2010-05-28 13:03:56 +02:00
parent 6d7e30ae99
commit 160d1bfd07
2 changed files with 14 additions and 1 deletions

View File

@@ -1684,6 +1684,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;