mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 22:28:51 +00:00
better sorting is more important ;)
git-svn-id: file:///svn/phpbb/trunk@7206 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
09e2b89917
commit
5e797fbb17
3 changed files with 3 additions and 3 deletions
|
@ -387,7 +387,7 @@ foreach ($supported_dbms as $dbms)
|
||||||
}
|
}
|
||||||
else if ($dbms === 'mysql_41' && $column_data[2] == 'true_sort')
|
else if ($dbms === 'mysql_41' && $column_data[2] == 'true_sort')
|
||||||
{
|
{
|
||||||
$line .= ' COLLATE utf8_general_ci';
|
$line .= ' COLLATE utf8_unicode_ci';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -743,7 +743,7 @@ if (version_compare($current_version, '3.0.b6', '<='))
|
||||||
// sorting thang
|
// sorting thang
|
||||||
if ($map_dbms === 'mysql_41')
|
if ($map_dbms === 'mysql_41')
|
||||||
{
|
{
|
||||||
sql_column_change($dbms, TOPICS_TABLE, 'topic_title', 'varchar(100) DEFAULT \'\' NOT NULL COLLATE utf8_general_ci');
|
sql_column_change($dbms, TOPICS_TABLE, 'topic_title', 'varchar(100) DEFAULT \'\' NOT NULL COLLATE utf8_unicode_ci');
|
||||||
}
|
}
|
||||||
|
|
||||||
if ($config['fulltext_native_common_thres'] == 20)
|
if ($config['fulltext_native_common_thres'] == 20)
|
||||||
|
|
|
@ -884,7 +884,7 @@ CREATE TABLE phpbb_topics (
|
||||||
topic_attachment tinyint(1) UNSIGNED DEFAULT '0' NOT NULL,
|
topic_attachment tinyint(1) UNSIGNED DEFAULT '0' NOT NULL,
|
||||||
topic_approved tinyint(1) UNSIGNED DEFAULT '1' NOT NULL,
|
topic_approved tinyint(1) UNSIGNED DEFAULT '1' NOT NULL,
|
||||||
topic_reported tinyint(1) UNSIGNED DEFAULT '0' NOT NULL,
|
topic_reported tinyint(1) UNSIGNED DEFAULT '0' NOT NULL,
|
||||||
topic_title varchar(100) DEFAULT '' NOT NULL COLLATE utf8_general_ci,
|
topic_title varchar(100) DEFAULT '' NOT NULL COLLATE utf8_unicode_ci,
|
||||||
topic_poster mediumint(8) UNSIGNED DEFAULT '0' NOT NULL,
|
topic_poster mediumint(8) UNSIGNED DEFAULT '0' NOT NULL,
|
||||||
topic_time int(11) UNSIGNED DEFAULT '0' NOT NULL,
|
topic_time int(11) UNSIGNED DEFAULT '0' NOT NULL,
|
||||||
topic_time_limit int(11) UNSIGNED DEFAULT '0' NOT NULL,
|
topic_time_limit int(11) UNSIGNED DEFAULT '0' NOT NULL,
|
||||||
|
|
Loading…
Add table
Reference in a new issue