Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichal Čihař <michal@cihar.com>2017-03-06 11:37:13 +0300
committerMichal Čihař <michal@cihar.com>2017-03-20 19:56:08 +0300
commit44d3cb3869a59276a1b3868867b77e025a30c5d4 (patch)
tree08e451c273314714e58ef79869dc54aeae6ec6f1 /tbl_operations.php
parentb2bf9fba8706d8b90093f5463601f33bfcab6557 (diff)
Simplify getting table collation
- remove not needed word Table from method name - fix code to handle errors Signed-off-by: Michal Čihař <michal@cihar.com>
Diffstat (limited to 'tbl_operations.php')
-rw-r--r--tbl_operations.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tbl_operations.php b/tbl_operations.php
index 03a58a4208..1893b7b076 100644
--- a/tbl_operations.php
+++ b/tbl_operations.php
@@ -224,7 +224,7 @@ if ($reread_info) {
$tbl_storage_engine = $pma_table->getStorageEngine();
$show_comment = $pma_table->getComment();
}
- $tbl_collation = $pma_table->getTableCollation();
+ $tbl_collation = $pma_table->getCollation();
$table_info_num_rows = $pma_table->getTableNumRowInfo();
$row_format = $pma_table->getTableRowFormat();
$auto_increment = $pma_table->getAutoIncrementInfo();