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-14 19:13:32 +0300
committerMichal Čihař <michal@cihar.com>2017-03-20 19:56:09 +0300
commit7c35333e5d49c9093bc467c3703b9ccc81d930c5 (patch)
treeb8f4d4752896e6c978880fbdd6986ec76aa5fc5b /tbl_operations.php
parent77990debb53761f7de941ce9bb719c62770135d8 (diff)
Fix method names
Signed-off-by: Michal Čihař <michal@cihar.com>
Diffstat (limited to 'tbl_operations.php')
-rw-r--r--tbl_operations.php14
1 files changed, 7 insertions, 7 deletions
diff --git a/tbl_operations.php b/tbl_operations.php
index 90dcd75656..1996e085dd 100644
--- a/tbl_operations.php
+++ b/tbl_operations.php
@@ -61,14 +61,14 @@ if ($pma_table->isView()) {
$show_comment = null;
} else {
$tbl_is_view = false;
- $tbl_storage_engine = $pma_table->getTableStorageEngine();
- $show_comment = $pma_table->getShowComment();
+ $tbl_storage_engine = $pma_table->getStorageEngine();
+ $show_comment = $pma_table->getComment();
}
-$tbl_collation = $pma_table->getTableCollation();
-$table_info_num_rows = $pma_table->getTableNumRowInfo();
-$row_format = $pma_table->getTableRowFormat();
-$auto_increment = $pma_table->getAutoIncrementInfo();
-$create_options = $pma_table->createOptionsArray();
+$tbl_collation = $pma_table->getCollation();
+$table_info_num_rows = $pma_table->getNumRows();
+$row_format = $pma_table->getRowFormat();
+$auto_increment = $pma_table->getAutoIncrement();
+$create_options = $pma_table->getCreateOptions();
// set initial value of these variables, based on the current table engine
if ($pma_table->isEngine('ARIA')) {