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_structure.php
parent77990debb53761f7de941ce9bb719c62770135d8 (diff)
Fix method names
Signed-off-by: Michal Čihař <michal@cihar.com>
Diffstat (limited to 'tbl_structure.php')
-rw-r--r--tbl_structure.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/tbl_structure.php b/tbl_structure.php
index 0e313884e9..679e2cb434 100644
--- a/tbl_structure.php
+++ b/tbl_structure.php
@@ -41,10 +41,10 @@ if ($table_class_object->isView()) {
$tbl_storage_engine = __('View');
} else {
$tbl_is_view = false;
- $tbl_storage_engine = $table_class_object->getTableStorageEngine();
+ $tbl_storage_engine = $table_class_object->getStorageEngine();
}
-$tbl_collation = $table_class_object->getTableCollation();
-$table_info_num_rows = $table_class_object->getTableNumRowInfo();
+$tbl_collation = $table_class_object->getCollation();
+$table_info_num_rows = $table_class_object->getNumRows();
/* Define dependencies for the concerned controller */
$dependency_definitions = array(
'db' => $db,