diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2012-08-30 16:21:27 +0200 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2012-08-30 16:21:27 +0200 |
commit | df83f22b718e56ff06a2c35a15cec1039df35db9 (patch) | |
tree | 4cee4e07d9e74e5a94f0d70cc01aa3149de7553e | |
parent | a1e0690b6b25ffd64f6ae2fc2f7b17a04e931690 (diff) | |
download | forums-df83f22b718e56ff06a2c35a15cec1039df35db9.tar forums-df83f22b718e56ff06a2c35a15cec1039df35db9.tar.gz forums-df83f22b718e56ff06a2c35a15cec1039df35db9.tar.bz2 forums-df83f22b718e56ff06a2c35a15cec1039df35db9.tar.xz forums-df83f22b718e56ff06a2c35a15cec1039df35db9.zip |
[feature/soft-delete] Fix copy-paste fail for database update on the index
PHPBB3-9657
-rw-r--r-- | phpBB/install/database_update.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/install/database_update.php b/phpBB/install/database_update.php index 6ad38409c0..11b6d225b0 100644 --- a/phpBB/install/database_update.php +++ b/phpBB/install/database_update.php @@ -1138,7 +1138,7 @@ function database_update_info() ), TOPICS_TABLE => array( 'topic_visibility' => array('topic_visibility'), - 'forum_appr_last' => array('INDEX', array('forum_id', 'topic_visibility', 'topic_last_post_id')), + 'forum_appr_last' => array('forum_id', 'topic_visibility', 'topic_last_post_id'), ), ), ), |