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:
Diffstat (limited to 'src/controllers/InfoController.php')
-rw-r--r--src/controllers/InfoController.php12
1 files changed, 5 insertions, 7 deletions
diff --git a/src/controllers/InfoController.php b/src/controllers/InfoController.php
index 3e385538..bcf2d6df 100644
--- a/src/controllers/InfoController.php
+++ b/src/controllers/InfoController.php
@@ -1,7 +1,7 @@
<?php
/**
- * PHPPgAdmin v6.0.0-RC2
+ * PHPPgAdmin v6.0.0-RC1.
*/
namespace PHPPgAdmin\Controller;
@@ -10,8 +10,6 @@ use PHPPgAdmin\Decorators\Decorator;
/**
* Base controller class.
- *
- * @package PHPPgAdmin
*/
class InfoController extends BaseController
{
@@ -176,7 +174,7 @@ class InfoController extends BaseController
echo "\t\t<td>", $this->misc->printVal($tablestatstups->fields['n_tup_del'], 'int4', $this->shownull), '</td>'.PHP_EOL;
echo "\t</tr>".PHP_EOL;
$tablestatstups->movenext();
- ++$i;
+ $i++;
}
echo '</table>'.PHP_EOL;
@@ -258,7 +256,7 @@ class InfoController extends BaseController
echo "\t\t<td>({$percentage}{$this->lang['strpercent']})</td>".PHP_EOL;
echo "\t</tr>".PHP_EOL;
$tablestatsio->movenext();
- ++$i;
+ $i++;
}
echo '</table>'.PHP_EOL;
@@ -286,7 +284,7 @@ class InfoController extends BaseController
echo "\t\t<td>", $this->misc->printVal($indexstatstups->fields['idx_tup_fetch'], 'int4', $this->shownull), '</td>'.PHP_EOL;
echo "\t</tr>".PHP_EOL;
$indexstatstups->movenext();
- ++$i;
+ $i++;
}
echo '</table>'.PHP_EOL;
@@ -321,7 +319,7 @@ class InfoController extends BaseController
echo "\t\t<td>({$percentage}{$this->lang['strpercent']})</td>".PHP_EOL;
echo "\t</tr>".PHP_EOL;
$indexstatsio->movenext();
- ++$i;
+ $i++;
}
echo '</table>'.PHP_EOL;