diff options
author | Bart van Bragt <bartvb@users.sourceforge.net> | 2001-12-24 14:25:17 +0000 |
---|---|---|
committer | Bart van Bragt <bartvb@users.sourceforge.net> | 2001-12-24 14:25:17 +0000 |
commit | d4039c39a62fcd89408961495f955e425a9aab4f (patch) | |
tree | 569d6030ffdd9e04cb8d74b7c117d250966800f4 | |
parent | ccb3b51048f467cdf3174697886680aa1f965069 (diff) | |
download | forums-d4039c39a62fcd89408961495f955e425a9aab4f.tar forums-d4039c39a62fcd89408961495f955e425a9aab4f.tar.gz forums-d4039c39a62fcd89408961495f955e425a9aab4f.tar.bz2 forums-d4039c39a62fcd89408961495f955e425a9aab4f.tar.xz forums-d4039c39a62fcd89408961495f955e425a9aab4f.zip |
Fixed problem with conversion of privmsgs and permissions of forums
git-svn-id: file:///svn/phpbb/trunk@1695 89ea8834-ac86-4346-8a33-228a782c2dd0
-rw-r--r-- | phpBB/upgrade.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/phpBB/upgrade.php b/phpBB/upgrade.php index 6b6717b80c..2dd7a1fa8b 100644 --- a/phpBB/upgrade.php +++ b/phpBB/upgrade.php @@ -882,7 +882,7 @@ if(isset($next)) if($row['msg_status'] == 1) { // Private message has been read - $row['msg_status'] = PRIVMSGS_SAVED_IN_MAIL; + $row['msg_status'] = PRIVMSGS_READ_MAIL; } else { @@ -1157,6 +1157,7 @@ if(isset($next)) auth_view = $auth_view, auth_read = $auth_read, auth_post = $auth_post, + auth_reply = $auth_reply, auth_edit = $auth_edit, auth_delete = $auth_delete, auth_vote = $auth_vote, |