mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-06 06:25:04 +02:00
git-svn-id: file:///svn/phpbb/trunk@7675 89ea8834-ac86-4346-8a33-228a782c2dd0
This commit is contained in:
parent
e45c503bde
commit
b4b9f7fee2
@ -1256,7 +1256,7 @@ function get_schema_struct()
|
||||
'enable_magic_url' => array('BOOL', 1),
|
||||
'enable_sig' => array('BOOL', 1),
|
||||
'post_username' => array('VCHAR_UNI:255', ''),
|
||||
'post_subject' => array('XSTEXT_UNI', ''),
|
||||
'post_subject' => array('XSTEXT_UNI', '', 'true_sort'),
|
||||
'post_text' => array('MTEXT_UNI', ''),
|
||||
'post_checksum' => array('VCHAR:32', ''),
|
||||
'post_attachment' => array('BOOL', 0),
|
||||
|
@ -208,6 +208,7 @@ p a {
|
||||
<li>[Fix] Display correct message if no attachments found in user administration (Bug #11629)</li>
|
||||
<li>[Fix] Let the "Delete all board cookies" being displayed for guests too (only prosilver) (Bug #11603)</li>
|
||||
<li>[Fix] Do not display view topic link in MCP while there is no link present (Bug #11573)</li>
|
||||
<li>[Fix] MySQL now properly sorts by post_subject (Bug #11637)</li>
|
||||
</ul>
|
||||
|
||||
</div>
|
||||
|
@ -698,7 +698,7 @@ class fulltext_mysql extends search_backend
|
||||
{
|
||||
if ($db->sql_layer == 'mysqli' || version_compare($db->mysql_version, '4.1.3', '>='))
|
||||
{
|
||||
$alter[] = 'MODIFY post_subject varchar(100) COLLATE utf8_unicode_ci DEFAULT \'\' NOT NULL';
|
||||
//$alter[] = 'MODIFY post_subject varchar(100) COLLATE utf8_unicode_ci DEFAULT \'\' NOT NULL';
|
||||
}
|
||||
else
|
||||
{
|
||||
|
@ -607,6 +607,11 @@ if (version_compare($current_version, '3.0.RC1', '<='))
|
||||
$db->sql_query($sql);
|
||||
}
|
||||
|
||||
if ($map_dbms === 'mysql_41')
|
||||
{
|
||||
sql_column_change($map_dbms, POSTS_TABLE, 'post_subject', array('XSTEXT_UNI', '', 'true_sort'));
|
||||
}
|
||||
|
||||
$no_updates = false;
|
||||
}
|
||||
|
||||
|
@ -243,7 +243,7 @@ CREATE TABLE phpbb_forums (
|
||||
forum_topics_real mediumint(8) UNSIGNED DEFAULT '0' NOT NULL,
|
||||
forum_last_post_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL,
|
||||
forum_last_poster_id mediumint(8) UNSIGNED DEFAULT '0' NOT NULL,
|
||||
forum_last_post_subject varchar(100) DEFAULT '' NOT NULL,
|
||||
forum_last_post_subject varchar(100) DEFAULT '' NOT NULL COLLATE utf8_unicode_ci,
|
||||
forum_last_post_time int(11) UNSIGNED DEFAULT '0' NOT NULL,
|
||||
forum_last_poster_name varchar(255) DEFAULT '' NOT NULL,
|
||||
forum_last_poster_colour varchar(6) DEFAULT '' NOT NULL,
|
||||
|
Loading…
x
Reference in New Issue
Block a user