mirror of
https://github.com/phpbb/phpbb.git
synced 2025-08-07 01:06:48 +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:
@@ -388,7 +388,7 @@ CREATE TABLE phpbb_posts (
|
||||
post_subject varchar(60),
|
||||
post_text mediumtext(16777215),
|
||||
post_checksum varchar(32) NOT NULL,
|
||||
post_encoding varchar(11) NOT NULL DEFAULT 'iso-8859-15',
|
||||
post_encoding varchar(11) NOT NULL DEFAULT 'iso-8859-1',
|
||||
post_attachment tinyint(1) NOT NULL DEFAULT '0',
|
||||
bbcode_bitfield int(11) NOT NULL DEFAULT '0',
|
||||
bbcode_uid varchar(5) NOT NULL DEFAULT '',
|
||||
@@ -425,7 +425,7 @@ CREATE TABLE phpbb_privmsgs (
|
||||
message_edit_reason varchar(100),
|
||||
message_edit_user mediumint(8) NOT NULL DEFAULT '0',
|
||||
message_checksum varchar(32) NOT NULL DEFAULT '',
|
||||
message_encoding varchar(11) NOT NULL DEFAULT 'iso-8859-15',
|
||||
message_encoding varchar(11) NOT NULL DEFAULT 'iso-8859-1',
|
||||
message_attachment tinyint(1) NOT NULL DEFAULT '0',
|
||||
bbcode_bitfield int(11) NOT NULL DEFAULT '0',
|
||||
bbcode_uid varchar(5) NOT NULL DEFAULT '',
|
||||
|
Reference in New Issue
Block a user