Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/HuasoFoundries/phpPgAdmin6.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/controllers/BaseController.php')
-rw-r--r--src/controllers/BaseController.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/controllers/BaseController.php b/src/controllers/BaseController.php
index 3a5f792c..8243efe9 100644
--- a/src/controllers/BaseController.php
+++ b/src/controllers/BaseController.php
@@ -51,7 +51,7 @@ class BaseController
protected $scripts = '';
public $msg = '';
public $view;
- public $plugin_manager;
+
public $misc;
public $conf;
public $phpMinVer;
@@ -72,10 +72,10 @@ class BaseController
$this->view_name = str_replace('controller', '', strtolower($this->controller_name));
$this->script = $this->view_name;
- $this->view = $container->get('view');
- $this->plugin_manager = $container->get('plugin_manager');
- $this->msg = $container->get('msg');
- $this->appLangFiles = $container->get('appLangFiles');
+ $this->view = $container->get('view');
+
+ $this->msg = $container->get('msg');
+ $this->appLangFiles = $container->get('appLangFiles');
$this->misc = $container->get('misc');
$this->conf = $this->misc->getConf();