Merge branch 'QA_4_5'
This commit is contained in:
commit
739df4a1d8
@ -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()
|
||||
|
||||
@ -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): ?>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user