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_select.php
parent59b11954f4605ba972f32536850ea5c404831217 (diff)
Introduce the ResponseStub
Signed-off-by: Jason <jason.daurus@gmail.com>
Diffstat (limited to 'tbl_select.php')
-rw-r--r--tbl_select.php3
1 files changed, 3 insertions, 0 deletions
diff --git a/tbl_select.php b/tbl_select.php
index 66d62ddb6f..cb4e195582 100644
--- a/tbl_select.php
+++ b/tbl_select.php
@@ -16,6 +16,7 @@ require_once 'libraries/common.inc.php';
require_once 'libraries/tbl_common.inc.php';
require_once 'libraries/tbl_info.inc.php';
require_once 'libraries/di/Container.class.php';
+require_once 'libraries/Response.class.php';
require_once 'libraries/controllers/TableSearchController.class.php';
use PMA\DI;
@@ -25,6 +26,8 @@ $container->factory('PMA\Controllers\Table\TableSearchController');
$container->alias(
'TableSearchController', 'PMA\Controllers\Table\TableSearchController'
);
+$container->set('PMA_Response', PMA_Response::getInstance());
+$container->alias('response', 'PMA_Response');
/* Define dependencies for the concerned controller */
$dependency_definitions = array(