mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-10 02:36:38 +02:00
Changed the default charset from -15 to -1. Make sure that you set 'post_encoding' in the posts table and 'message_encoding' in the private messages table to 'iso-8859-1' after this update.
git-svn-id: file:///svn/phpbb/trunk@5144 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
@@ -1322,7 +1322,7 @@ ALTER TABLE [phpbb_posts] WITH NOCHECK ADD
|
||||
CONSTRAINT [DF_posts__enable_smilies] DEFAULT (1) FOR [enable_smilies],
|
||||
CONSTRAINT [DF_posts__enable_magic_url] DEFAULT (1) FOR [enable_magic_url],
|
||||
CONSTRAINT [DF_posts__enable_sig] DEFAULT (1) FOR [enable_sig],
|
||||
CONSTRAINT [DF_posts__post_encoding] DEFAULT ('iso-8859-15') FOR [post_encoding],
|
||||
CONSTRAINT [DF_posts__post_encoding] DEFAULT ('iso-8859-1') FOR [post_encoding],
|
||||
CONSTRAINT [DF_posts__post_attachment] DEFAULT (0) FOR [post_attachment],
|
||||
CONSTRAINT [DF_posts__bbcode_bitfield] DEFAULT (0) FOR [bbcode_bitfield],
|
||||
CONSTRAINT [DF_posts__post_edit_time] DEFAULT (0) FOR [post_edit_time],
|
||||
@@ -1343,7 +1343,7 @@ ALTER TABLE [phpbb_privmsgs] WITH NOCHECK ADD
|
||||
CONSTRAINT [DF_privms_enable_magic_url] DEFAULT (1) FOR [enable_magic_url],
|
||||
CONSTRAINT [DF_privms_enable_sig] DEFAULT (1) FOR [enable_sig],
|
||||
CONSTRAINT [DF_privms_message_edit_user] DEFAULT (0) FOR [message_edit_user],
|
||||
CONSTRAINT [DF_privms_message_encoding] DEFAULT ('iso-8859-15') FOR [message_encoding],
|
||||
CONSTRAINT [DF_privms_message_encoding] DEFAULT ('iso-8859-1') FOR [message_encoding],
|
||||
CONSTRAINT [DF_privms_message_attachment] DEFAULT (0) FOR [message_attachment],
|
||||
CONSTRAINT [DF_privms_bbcode_bitfield] DEFAULT (0) FOR [bbcode_bitfield],
|
||||
CONSTRAINT [DF_privms_message_edit_time] DEFAULT (0) FOR [message_edit_time],
|
||||
|
Reference in New Issue
Block a user