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/InfoController.php
parentf9149bf8e6068cdfe725fb90d3145315f90cc0e9 (diff)
enable correct routing when running with dev server
Diffstat (limited to 'src/controllers/InfoController.php')
-rw-r--r--src/controllers/InfoController.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/controllers/InfoController.php b/src/controllers/InfoController.php
index 50ddf8fb..05498559 100644
--- a/src/controllers/InfoController.php
+++ b/src/controllers/InfoController.php
@@ -16,12 +16,13 @@ use PHPPgAdmin\Decorators\Decorator;
class InfoController extends BaseController
{
public $controller_title = 'strtables';
+
/**
* Default method to render the controller according to the action parameter.
*/
public function render()
{
- $this->printHeader($this->headerTitle('', '', $_REQUEST['table'] . ' - ' . $this->lang['strinfo']));
+ $this->printHeader($this->headerTitle('', '', $_REQUEST['table'].' - '.$this->lang['strinfo']));
$this->printBody();
switch ($this->action) {