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/SqlController.php')
-rw-r--r--src/controllers/SqlController.php5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/controllers/SqlController.php b/src/controllers/SqlController.php
index 59168e44..ca691edd 100644
--- a/src/controllers/SqlController.php
+++ b/src/controllers/SqlController.php
@@ -186,6 +186,9 @@ class SqlController extends BaseController
$data->conn->setFetchMode(\ADODB_FETCH_NUM);
\set_time_limit(25000);
+ /**
+ * @var \ADORecordSet
+ */
$rs = $data->conn->Execute($this->query);
echo '<form method="post" id="sqlform" action="' . $_SERVER['REQUEST_URI'] . '">';
@@ -260,7 +263,7 @@ class SqlController extends BaseController
}
// Reload the browser as we may have made schema changes
- $this->misc->setReloadBrowser(true);
+ $this->view->setReloadBrowser(true);
// Display duration if we know it
if (null !== $this->duration) {