Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJo Michael <me@mynetx.net>2012-04-29 04:07:56 +0400
committerJo Michael <me@mynetx.net>2012-04-29 04:07:56 +0400
commit2466594cb7d4bd3f9a14619334e10f0fcd33d39a (patch)
treebe547d631b36cf78e078075aa7b8e06796e36d3d /tbl_alter.php
parent7932ed4fd16018a49557146c0deb9e2181d73346 (diff)
Fix checkstyle ControlStructures warnings
Diffstat (limited to 'tbl_alter.php')
-rw-r--r--tbl_alter.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tbl_alter.php b/tbl_alter.php
index 1e4db64487..e1f53ef59c 100644
--- a/tbl_alter.php
+++ b/tbl_alter.php
@@ -108,7 +108,7 @@ if (isset($_REQUEST['move_columns'])
: $column_names[$i - 1]
);
// update current column_names array, first delete old position
- for($j = 0, $ll = count($column_names); $j < $ll; $j++) {
+ for ($j = 0, $ll = count($column_names); $j < $ll; $j++) {
if ($column_names[$j] == $column) {
unset($column_names[$j]);
}