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/ServersController.php')
-rw-r--r--src/controllers/ServersController.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/controllers/ServersController.php b/src/controllers/ServersController.php
index ade0da25..a2f32301 100644
--- a/src/controllers/ServersController.php
+++ b/src/controllers/ServersController.php
@@ -64,13 +64,13 @@ class ServersController extends BaseController
$server_html .= $this->printFooter(false);
- if (null === $this->container->requestobj->getAttribute('route')) {
+ if (null === \requestInstance()->getAttribute('route')) {
echo $server_html;
} else {
- $body = $this->container->responseobj->getBody();
+ $body = \responseInstance()->getBody();
$body->write($server_html);
- return $this->container->responseobj;
+ return \responseInstance();
}
}