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:
authorFelipe Figueroa <amenadiel@gmail.com>2018-05-11 20:03:56 +0300
committerFelipe Figueroa <amenadiel@gmail.com>2018-05-11 20:03:56 +0300
commit1c9b5db203985b2d6e23728f33b0080e02f2f1aa (patch)
tree2b99c1ab8189ac61dfe831630b0013f91c8757eb /src/controllers/SqlController.php
parentf9149bf8e6068cdfe725fb90d3145315f90cc0e9 (diff)
enable correct routing when running with dev server
Diffstat (limited to 'src/controllers/SqlController.php')
-rw-r--r--src/controllers/SqlController.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/controllers/SqlController.php b/src/controllers/SqlController.php
index 27c530a0..1056d16d 100644
--- a/src/controllers/SqlController.php
+++ b/src/controllers/SqlController.php
@@ -185,7 +185,7 @@ class SqlController extends BaseController
$rs = $data->conn->Execute($this->query);
- echo '<form method="post" id="sqlform" action="' . $_SERVER['REQUEST_URI'] . '">';
+ echo '<form method="post" id="sqlform" action="'.$_SERVER['REQUEST_URI'].'">';
echo '<textarea width="90%" name="query" id="query" rows="5" cols="100" resizable="true">';
echo htmlspecialchars($this->query);