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>2021-03-08 21:03:12 +0300
committerMaurício Meneghini Fauth <mauricio@fauth.dev>2021-03-08 21:03:12 +0300
commit7e33d227f554171a88399de6860577d48f837d7f (patch)
tree1accb278c22a75f49909b8452445aeac1d1383a6 /test/bootstrap-dist.php
parentdb2af18aff2aa9b60a4ced50f439a609a3b253ab (diff)
Rename the PMA_Config global variable to config
Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
Diffstat (limited to 'test/bootstrap-dist.php')
-rw-r--r--test/bootstrap-dist.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/bootstrap-dist.php b/test/bootstrap-dist.php
index aa39313a6c..196719f2f9 100644
--- a/test/bootstrap-dist.php
+++ b/test/bootstrap-dist.php
@@ -47,8 +47,8 @@ require_once ROOT_PATH . 'libraries/vendor_config.php';
require_once AUTOLOAD_FILE;
Loader::loadFunctions();
-$GLOBALS['PMA_Config'] = new Config();
-$GLOBALS['PMA_Config']->set('environment', 'development');
+$GLOBALS['config'] = new Config();
+$GLOBALS['config']->set('environment', 'development');
$GLOBALS['cfg']['environment'] = 'development';
/* Load Database interface */