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-03-15 02:32:25 +0300
committerFelipe Figueroa <amenadiel@gmail.com>2018-03-15 02:32:25 +0300
commite0687b0863df251f8e00d73a4cca95cb5c1d7af2 (patch)
treee47db5210e8ccf700d5d166bff921f660f570772 /src/controllers/SqleditController.php
parent9a39e6b69c86e9c3da875515b46afc9f8399c636 (diff)
adds align double arrow and align equals to phpcsfixer
Diffstat (limited to 'src/controllers/SqleditController.php')
-rw-r--r--src/controllers/SqleditController.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/controllers/SqleditController.php b/src/controllers/SqleditController.php
index c9385c21..77a98929 100644
--- a/src/controllers/SqleditController.php
+++ b/src/controllers/SqleditController.php
@@ -14,8 +14,8 @@ namespace PHPPgAdmin\Controller;
class SqleditController extends BaseController
{
public $controller_name = 'SqleditController';
- public $query = '';
- public $subject = '';
+ public $query = '';
+ public $subject = '';
public $start_time;
public $duration;
@@ -30,13 +30,13 @@ class SqleditController extends BaseController
switch ($action) {
case 'find':
- $title = $this->lang['strfind'];
+ $title = $this->lang['strfind'];
$body_text = $this->doFind();
break;
case 'sql':
default:
- $title = $this->lang['strsql'];
+ $title = $this->lang['strsql'];
$body_text = $this->doDefault();
break;
@@ -69,7 +69,7 @@ class SqleditController extends BaseController
$_REQUEST['search_path'] = implode(',', $data->getSearchPath());
}
$search_path = htmlspecialchars($_REQUEST['search_path']);
- $sqlquery = htmlspecialchars($_SESSION['sqlquery']);
+ $sqlquery = htmlspecialchars($_SESSION['sqlquery']);
$default_html = $this->printTabs($this->misc->getNavTabs('popup'), 'sql', false);