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:10:28 +0300
committerFelipe Figueroa <amenadiel@gmail.com>2018-02-15 22:10:28 +0300
commit8c47e1b02e634855c2327c07a2770bd910072d70 (patch)
tree27f86a53d1a843aead5dd767ad2a9c9bf001d26d /src/controllers/AggregatesController.php
parentd255f96bc2307c5b543b316ff07507267ca1b30e (diff)
csfixer to other folders
Diffstat (limited to 'src/controllers/AggregatesController.php')
-rw-r--r--src/controllers/AggregatesController.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/controllers/AggregatesController.php b/src/controllers/AggregatesController.php
index 69e737d7..e65edc61 100644
--- a/src/controllers/AggregatesController.php
+++ b/src/controllers/AggregatesController.php
@@ -102,7 +102,7 @@ class AggregatesController extends BaseController
'aggrname' => [
'title' => $lang['strname'],
'field' => Decorator::field('proname'),
- 'url' => SUBFOLDER . "/redirect/aggregate?action=properties&amp;{$this->misc->href}&amp;",
+ 'url' => \SUBFOLDER . "/redirect/aggregate?action=properties&amp;{$this->misc->href}&amp;",
'vars' => ['aggrname' => 'proname', 'aggrtype' => 'proargtypes'],
],
'aggrtype' => [
@@ -307,7 +307,7 @@ class AggregatesController extends BaseController
$this->printTitle($lang['strcreateaggregate'], 'pg.aggregate.create');
$this->printMsg($msg);
- echo '<form action="' . SUBFOLDER . "/src/views/aggregates.php\" method=\"post\">\n";
+ echo '<form action="' . \SUBFOLDER . "/src/views/aggregates.php\" method=\"post\">\n";
echo "<table>\n";
echo "\t<tr>\n\t\t<th class=\"data left required\">{$lang['strname']}</th>\n";
echo "\t\t<td class=\"data\"><input name=\"name\" size=\"32\" maxlength=\"{$data->_maxNameLen}\" value=\"",
@@ -394,7 +394,7 @@ class AggregatesController extends BaseController
$this->printTitle($lang['stralter'], 'pg.aggregate.alter');
$this->printMsg($msg);
- echo '<form action="' . SUBFOLDER . "/src/views/aggregates.php\" method=\"post\">\n";
+ echo '<form action="' . \SUBFOLDER . "/src/views/aggregates.php\" method=\"post\">\n";
$aggrdata = $data->getAggregate($_REQUEST['aggrname'], $_REQUEST['aggrtype']);
if ($aggrdata->recordCount() > 0) {
// Output table header
@@ -444,7 +444,7 @@ class AggregatesController extends BaseController
echo '<p>', sprintf($lang['strconfdropaggregate'], htmlspecialchars($_REQUEST['aggrname'])), "</p>\n";
- echo '<form action="' . SUBFOLDER . "/src/views/aggregates.php\" method=\"post\">\n";
+ echo '<form action="' . \SUBFOLDER . "/src/views/aggregates.php\" method=\"post\">\n";
echo "<p><input type=\"checkbox\" id=\"cascade\" name=\"cascade\" /> <label for=\"cascade\">{$lang['strcascade']}</label></p>\n";
echo "<p><input type=\"hidden\" name=\"action\" value=\"drop\" />\n";
echo '<input type="hidden" name="aggrname" value="', htmlspecialchars($_REQUEST['aggrname']), "\" />\n";