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-04-20 15:26:49 +0300
committerFelipe Figueroa <amenadiel@gmail.com>2018-04-20 15:26:49 +0300
commit345b297d76faeeaf2740053e5df189a7797f7d74 (patch)
treede99668e13753afcf6a4e890fae7655ab2645289 /src/controllers/SchemasController.php
parente96b0144397a7614532138973ed1caadb18ed9eb (diff)
styling improvements
Diffstat (limited to 'src/controllers/SchemasController.php')
-rw-r--r--src/controllers/SchemasController.php12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/controllers/SchemasController.php b/src/controllers/SchemasController.php
index d32dd3d9..68b2621b 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' => [
@@ -289,7 +289,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=\"",
@@ -372,7 +372,7 @@ class SchemasController extends BaseController
$_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";
@@ -419,7 +419,7 @@ class SchemasController extends BaseController
*
* @param mixed $msg
*/
- public function doSaveAlter($msg = '')
+ public function doSaveAlter()
{
$data = $this->misc->getDatabaseAccessor();
@@ -449,7 +449,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) {
@@ -518,7 +518,7 @@ class SchemasController extends BaseController
$this->printTabs('schema', 'export');
$this->printMsg($msg);
- echo '<form action="'.\SUBFOLDER.'/src/views/dbexport" method="post">'."\n";
+ echo '<form action="' . \SUBFOLDER . '/src/views/dbexport" method="post">' . "\n";
echo "<table>\n";
echo "<tr><th class=\"data\">{$this->lang['strformat']}</th><th class=\"data\" colspan=\"2\">{$this->lang['stroptions']}</th></tr>\n";