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:
authorMadhura Jayaratne <madhura.cj@gmail.com>2012-04-22 19:58:41 +0400
committerMadhura Jayaratne <madhura.cj@gmail.com>2012-04-22 19:58:41 +0400
commit4b8d52d937d396301c17472874cb645e92258df3 (patch)
treefcde2fe963c87d5e8059029212583cac220f41d1 /tbl_addfield.php
parent67134da3d01ff2f2469d79223d0d22a4515d3227 (diff)
Fix CheckStyle warnings, Type:CloseBracketNewLine (Closing parenthesis of a multi-line IF statement must be on a new line)
Diffstat (limited to 'tbl_addfield.php')
-rw-r--r--tbl_addfield.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/tbl_addfield.php b/tbl_addfield.php
index abc07be67c..b6c38caf75 100644
--- a/tbl_addfield.php
+++ b/tbl_addfield.php
@@ -54,7 +54,8 @@ if (isset($_REQUEST['do_save_data'])) {
$field_fulltext = array();
for ($i = 0; $i < $field_cnt; ++$i) {
if (isset($_REQUEST['field_key'][$i])
- && strlen($_REQUEST['field_name'][$i])) {
+ && strlen($_REQUEST['field_name'][$i])
+ ) {
if ($_REQUEST['field_key'][$i] == 'primary_' . $i) {
$field_primary[] = $i;
}