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-02-15 22:17:10 +0300
committerStyleCI Bot <bot@styleci.io>2018-02-15 22:17:10 +0300
commitb0dfd36560280099ec02aac7e46f4c36166f0b7e (patch)
treeb338938e9412d108e1e4bb60e4ea59d33cbc6f7d /src/controllers/TablespacesController.php
parentb4944af333e89b9aa9d3bb5e975a4787599a40fc (diff)
Apply fixes from StyleCI
[ci skip] [skip ci]
Diffstat (limited to 'src/controllers/TablespacesController.php')
-rw-r--r--src/controllers/TablespacesController.php24
1 files changed, 12 insertions, 12 deletions
diff --git a/src/controllers/TablespacesController.php b/src/controllers/TablespacesController.php
index b8a3e0a2..d018f3bf 100644
--- a/src/controllers/TablespacesController.php
+++ b/src/controllers/TablespacesController.php
@@ -20,8 +20,8 @@ class TablespacesController extends BaseController
{
$conf = $this->conf;
- $lang = $this->lang;
- $data = $this->misc->getDatabaseAccessor();
+ $lang = $this->lang;
+ $data = $this->misc->getDatabaseAccessor();
$action = $this->action;
$this->printHeader($lang['strtablespaces']);
@@ -119,11 +119,11 @@ class TablespacesController extends BaseController
$actions = [
'alter' => [
'content' => $lang['stralter'],
- 'attr' => [
+ 'attr' => [
'href' => [
- 'url' => 'tablespaces.php',
+ 'url' => 'tablespaces.php',
'urlvars' => [
- 'action' => 'edit',
+ 'action' => 'edit',
'tablespace' => \PHPPgAdmin\Decorators\Decorator::field('spcname'),
],
],
@@ -131,11 +131,11 @@ class TablespacesController extends BaseController
],
'drop' => [
'content' => $lang['strdrop'],
- 'attr' => [
+ 'attr' => [
'href' => [
- 'url' => 'tablespaces.php',
+ 'url' => 'tablespaces.php',
'urlvars' => [
- 'action' => 'confirm_drop',
+ 'action' => 'confirm_drop',
'tablespace' => \PHPPgAdmin\Decorators\Decorator::field('spcname'),
],
],
@@ -143,11 +143,11 @@ class TablespacesController extends BaseController
],
'privileges' => [
'content' => $lang['strprivileges'],
- 'attr' => [
+ 'attr' => [
'href' => [
- 'url' => 'privileges.php',
+ 'url' => 'privileges.php',
'urlvars' => [
- 'subject' => 'tablespace',
+ 'subject' => 'tablespace',
'tablespace' => \PHPPgAdmin\Decorators\Decorator::field('spcname'),
],
],
@@ -160,7 +160,7 @@ class TablespacesController extends BaseController
$this->printNavLinks(['create' => [
'attr' => [
'href' => [
- 'url' => 'tablespaces.php',
+ 'url' => 'tablespaces.php',
'urlvars' => [
'action' => 'create',
'server' => $_REQUEST['server'],