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-06-01 16:16:31 +0300
committerFelipe Figueroa <amenadiel@gmail.com>2018-06-01 16:16:31 +0300
commita3322595a279d03a43ea46d46c1f0804323c96c3 (patch)
treebd5b4989081b7ebbef972c350cc918c33cc4bad8 /src/controllers/SchemasController.php
parent9eebf72efde7dfde363c6842a9bfeb5a35ad5c89 (diff)
separates main Postgres class logic into more traits
Diffstat (limited to 'src/controllers/SchemasController.php')
-rw-r--r--src/controllers/SchemasController.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/controllers/SchemasController.php b/src/controllers/SchemasController.php
index 7c8cb379..269217c0 100644
--- a/src/controllers/SchemasController.php
+++ b/src/controllers/SchemasController.php
@@ -103,7 +103,7 @@ class SchemasController extends BaseController
'schema' => [
'title' => $this->lang['strschema'],
'field' => Decorator::field('nspname'),
- 'url' => \SUBFOLDER . "/redirect/schema?{$this->misc->href}&amp;",
+ 'url' => \SUBFOLDER."/redirect/schema?{$this->misc->href}&amp;",
'vars' => ['schema' => 'nspname'],
],
'owner' => [
@@ -281,7 +281,7 @@ class SchemasController extends BaseController
$this->printTitle($this->lang['strcreateschema'], 'pg.schema.create');
$this->printMsg($msg);
- echo '<form action="' . \SUBFOLDER . '/src/views/schemas" method="post">' . "\n";
+ echo '<form action="'.\SUBFOLDER.'/src/views/schemas" method="post">'."\n";
echo "<table style=\"width: 100%\">\n";
echo "\t<tr>\n\t\t<th class=\"data left required\">{$this->lang['strname']}</th>\n";
echo "\t\t<td class=\"data1\"><input name=\"formName\" size=\"32\" maxlength=\"{$data->_maxNameLen}\" value=\"",
@@ -356,7 +356,7 @@ class SchemasController extends BaseController
$this->coalesceArr($_POST, 'owner', $schema->fields['ownername']);
- echo '<form action="' . \SUBFOLDER . '/src/views/schemas" method="post">' . "\n";
+ echo '<form action="'.\SUBFOLDER.'/src/views/schemas" method="post">'."\n";
echo "<table>\n";
echo "\t<tr>\n";
@@ -433,7 +433,7 @@ class SchemasController extends BaseController
$this->printTrail('schema');
$this->printTitle($this->lang['strdrop'], 'pg.schema.drop');
- echo '<form action="' . \SUBFOLDER . '/src/views/schemas" method="post">' . "\n";
+ echo '<form action="'.\SUBFOLDER.'/src/views/schemas" method="post">'."\n";
//If multi drop
if (isset($_REQUEST['ma'])) {
foreach ($_REQUEST['ma'] as $v) {