1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 22:10:45 +02:00

- some changes to the recent session change

- display errors on inserting sessions
- fix database updater

git-svn-id: file:///svn/phpbb/branches/phpBB-3_0_0@8438 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
Meik Sievertsen
2008-03-18 10:14:37 +00:00
parent afba17e562
commit 221001a6dc
5 changed files with 27 additions and 22 deletions

View File

@@ -486,14 +486,14 @@ $database_update_info = array(
),
'add_index' => array(
SESSIONS_TABLE => array(
'session_forum_id' => 'session_forum_id',
'session_forum_id' => array('session_forum_id'),
),
GROUP_TABLE => array(
GROUPS_TABLE => array(
'group_legend_name' => array('group_legend', 'group_name'),
),
),
'drop_keys' => array(
GROUP_TABLE => array('group_legend'),
GROUPS_TABLE => array('group_legend'),
),
),
);