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-08-09 19:05:40 +0300
committerJason <jason.daurus@gmail.com>2015-08-12 11:50:09 +0300
commit3613f2b6bd11505c661919d0cb4572f499bfd416 (patch)
tree45589336f9df45e4da9f4d8cee8826e93d57a0a4 /tbl_structure.php
parent59b11954f4605ba972f32536850ea5c404831217 (diff)
Introduce the ResponseStub
Signed-off-by: Jason <jason.daurus@gmail.com>
Diffstat (limited to 'tbl_structure.php')
-rw-r--r--tbl_structure.php5
1 files changed, 5 insertions, 0 deletions
diff --git a/tbl_structure.php b/tbl_structure.php
index ae93d3bdd4..814c9701ba 100644
--- a/tbl_structure.php
+++ b/tbl_structure.php
@@ -9,18 +9,23 @@
namespace PMA;
+use PMA_Response;
+
require_once 'libraries/common.inc.php';
require_once 'libraries/mysql_charsets.inc.php';
require_once 'libraries/config/page_settings.class.php';
require_once 'libraries/bookmark.lib.php';
require_once 'libraries/di/Container.class.php';
require_once 'libraries/controllers/TableStructureController.class.php';
+require_once 'libraries/Response.class.php';
$container = DI\Container::getDefaultContainer();
$container->factory('PMA\Controllers\TableStructureController');
$container->alias(
'TableStructureController', 'PMA\Controllers\TableStructureController'
);
+$container->set('PMA_Response', PMA_Response::getInstance());
+$container->alias('response', 'PMA_Response');
global $db, $table, $db_is_system_schema, $tbl_is_view, $tbl_storage_engine,
$table_info_num_rows, $tbl_collation, $showtable;