1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-08 17:56:52 +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:
Bart van Bragt
2005-05-07 14:19:14 +00:00
parent 81c7144f68
commit 2f68ac78c6
7 changed files with 13 additions and 13 deletions

View File

@@ -385,7 +385,7 @@ CREATE TABLE phpbb_posts (
post_subject varchar(60),
post_text mediumtext,
post_checksum varchar(32) NOT NULL,
post_encoding varchar(11) DEFAULT 'iso-8859-15' NOT NULL,
post_encoding varchar(11) DEFAULT 'iso-8859-1' NOT NULL,
post_attachment tinyint(1) DEFAULT '0' NOT NULL,
bbcode_bitfield int(11) UNSIGNED DEFAULT '0' NOT NULL,
bbcode_uid varchar(5) DEFAULT '' NOT NULL,
@@ -422,7 +422,7 @@ CREATE TABLE phpbb_privmsgs (
message_edit_reason varchar(100),
message_edit_user mediumint(8) UNSIGNED DEFAULT '0' NOT NULL,
message_checksum varchar(32) DEFAULT '' NOT NULL,
message_encoding varchar(11) DEFAULT 'iso-8859-15' NOT NULL,
message_encoding varchar(11) DEFAULT 'iso-8859-1' NOT NULL,
message_attachment tinyint(1) DEFAULT '0' NOT NULL,
bbcode_bitfield int(11) UNSIGNED DEFAULT '0' NOT NULL,
bbcode_uid varchar(5) DEFAULT '' NOT NULL,