Merge branch 'QA_4_5'

This commit is contained in:
Marc Delisle 2015-11-11 13:51:59 -05:00
commit 739df4a1d8
2 changed files with 4 additions and 1 deletions

View File

@ -40,6 +40,7 @@ phpMyAdmin - ChangeLog
- issue #11626 wrong row count for query results
- issue #11608 Analyzer doesn't recognize GRANT statements
- issue #11602 Parser warnings (subqueries)
- issue #11658 Collation column is empty in table Structure
4.5.1.0 (2015-10-23)
- issue Invalid argument supplied for foreach()

View File

@ -30,6 +30,7 @@ $rownum = 0; $odd_row = true; ?>
$columns_list[] = $row['Field'];
$extracted_columnspec = Util::extractColumnSpec($row['Type']);
$attribute = $extracted_columnspec['attribute'];
$field_charset = $row['Collation'];
// prepare a common variable to reuse below; however,
// in case of a VIEW, $create_table_fields is empty
@ -101,7 +102,8 @@ $rownum = 0; $odd_row = true; ?>
'field_encoded' => urlencode($row['Field']),
'titles' => $titles,
'table' => $table,
'tbl_storage_engine' => $tbl_storage_engine
'tbl_storage_engine' => $tbl_storage_engine,
'field_charset' => $field_charset
)
); ?>
<?php if (! $tbl_is_view && ! $db_is_system_schema): ?>