Merge remote-tracking branch 'origin/QA_3_5'

This commit is contained in:
Pootle server 2012-02-09 18:40:16 +01:00
commit 81576968f3
2 changed files with 2 additions and 1 deletions

View File

@ -72,6 +72,7 @@ phpMyAdmin - ChangeLog
- patch #3475424 [import] Fixed CSV escape for the import
- bug #3482734 [interface] No warning on syntax error in search form
- bug #3423717 [core] Improved detection of SSL connection
+ FULLTEXT support for InnoDB, starting with MySQL 5.6.4
3.4.11.0 (not yet released)

View File

@ -439,7 +439,7 @@ foreach ($fields as $row) {
?>
</td>
<?php
if (! empty($tbl_type) && ($tbl_type == 'MYISAM' || $tbl_type == 'ARIA' || $tbl_type == 'MARIA')
if (! empty($tbl_type) && ($tbl_type == 'MYISAM' || $tbl_type == 'ARIA' || $tbl_type == 'MARIA' || ($tbl_type == 'INNODB' && PMA_MYSQL_INT_VERSION >= 50604))
// FULLTEXT is possible on TEXT, CHAR and VARCHAR
&& (strpos(' ' . $type, 'text') || strpos(' ' . $type, 'char'))) {
echo "\n";