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:
authorJason <jason.daurus@gmail.com>2015-07-30 20:04:06 +0300
committerJason <jason.daurus@gmail.com>2015-07-31 08:55:52 +0300
commit3fe4f63f6269fd819f619fba8b0c71c0f59c5079 (patch)
treedeaab3e71b59d02f9a29a37b66bdc804996fc803 /tbl_structure.php
parent1c28e6a8ab62afc6e663b768ce1ef3a2f6698b58 (diff)
Remove structure.lib.php and display_structure.inc.php
Signed-off-by: Jason <jason.daurus@gmail.com>
Diffstat (limited to 'tbl_structure.php')
-rw-r--r--tbl_structure.php10
1 files changed, 8 insertions, 2 deletions
diff --git a/tbl_structure.php b/tbl_structure.php
index 08a1b34637..20a6f965e6 100644
--- a/tbl_structure.php
+++ b/tbl_structure.php
@@ -23,7 +23,8 @@ $container->alias(
'StructureController', 'PMA\Controllers\StructureController'
);
-global $db, $table, $pos, $db_is_system_schema, $total_num_tables, $tables, $num_tables;
+global $db, $table, $pos, $db_is_system_schema, $total_num_tables, $tables,
+ $num_tables, $tbl_is_view, $tbl_storage_engine, $table_info_num_rows, $tbl_collation, $showtable;
/* Define dependencies for the concerned controller */
$dependency_definitions = array(
'db' => $db,
@@ -34,7 +35,12 @@ $dependency_definitions = array(
'db_is_system_schema' => $db_is_system_schema,
'num_tables' => $num_tables,
'total_num_tables' => $total_num_tables,
- 'tables' => $tables
+ 'tables' => $tables,
+ 'tbl_is_view' => $tbl_is_view,
+ 'tbl_storage_engine' => $tbl_storage_engine,
+ 'table_info_num_rows' => $table_info_num_rows,
+ 'tbl_collation' => $tbl_collation,
+ 'showtable' => $showtable
);
/** @var Controllers\StructureController $controller */