aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBart van Bragt <bartvb@users.sourceforge.net>2001-12-24 14:25:17 +0000
committerBart van Bragt <bartvb@users.sourceforge.net>2001-12-24 14:25:17 +0000
commitd4039c39a62fcd89408961495f955e425a9aab4f (patch)
tree569d6030ffdd9e04cb8d74b7c117d250966800f4
parentccb3b51048f467cdf3174697886680aa1f965069 (diff)
downloadforums-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.php3
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,