Merge branch 'QA_3_5'

This commit is contained in:
Marc Delisle 2012-02-09 12:24:24 -05:00
commit 52249c2db3
2 changed files with 2 additions and 1 deletions

View File

@ -75,6 +75,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";