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:
authorMaurício Meneghini Fauth <mauricio@fauth.dev>2020-10-27 20:57:53 +0300
committerMaurício Meneghini Fauth <mauricio@fauth.dev>2020-11-03 00:48:23 +0300
commit6b81080127fede57b8b1161dc0857ff787e0733e (patch)
tree7b84c96041ed26d265dee00a6e05013eb8764297 /libraries/services_controllers.php
parentf8bf16fcd868ba7036c38171ff69297ccb9edfae (diff)
Remove Common::server method
Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
Diffstat (limited to 'libraries/services_controllers.php')
-rw-r--r--libraries/services_controllers.php5
1 files changed, 5 insertions, 0 deletions
diff --git a/libraries/services_controllers.php b/libraries/services_controllers.php
index b2d44e8834..ccb3af9dc5 100644
--- a/libraries/services_controllers.php
+++ b/libraries/services_controllers.php
@@ -440,6 +440,7 @@ return [
'arguments' => [
'$response' => '@response',
'$template' => '@template',
+ '$dbi' => '@dbi',
],
],
PhpMyAdmin\Controllers\Server\ExportController::class => [
@@ -448,6 +449,7 @@ return [
'$response' => '@response',
'$template' => '@template',
'$export' => '@export_options',
+ '$dbi' => '@dbi',
],
],
PhpMyAdmin\Controllers\Server\ImportController::class => [
@@ -464,6 +466,7 @@ return [
'$response' => '@response',
'$template' => '@template',
'$plugins' => '@server_plugins',
+ '$dbi' => '@dbi',
],
],
PhpMyAdmin\Controllers\Server\PrivilegesController::class => [
@@ -490,6 +493,7 @@ return [
'$response' => '@response',
'$template' => '@template',
'$sqlQueryForm' => '@sql_query_form',
+ '$dbi' => '@dbi',
],
],
PhpMyAdmin\Controllers\Server\UserGroupsController::class => [
@@ -535,6 +539,7 @@ return [
'$response' => '@response',
'$template' => '@template',
'$data' => '@status_data',
+ '$dbi' => '@dbi',
],
],
PhpMyAdmin\Controllers\Server\Status\StatusController::class => [