coding standard: no spaces inside braces

This commit is contained in:
Sebastian Mendel
2007-04-01 11:02:46 +00:00
parent adb39168cc
commit cfeb306526
84 changed files with 745 additions and 747 deletions

View File

@@ -178,7 +178,7 @@ function showColumnSelectCell($columns, $column_number, $selected = '')
$z = 0;
for ($x = 0; $x < $col; $x++) {
if (isset($ins_col[$x]) && $ins_col[$x] == 'on') {
showColumnSelectCell( $fld, $z );
showColumnSelectCell($fld, $z);
$z++;
}
@@ -733,7 +733,7 @@ if (isset($Field) && count($Field) > 0) {
$master = key($tab_wher);
} else {
// Now let's find out which of the tables has an index
// ( When the control user is the same as the normal user
// (When the control user is the same as the normal user
// because he is using one of his databases as pmadb,
// the last db selected is not always the one where we need to work)
PMA_DBI_select_db($db);
@@ -806,7 +806,7 @@ if (isset($Field) && count($Field) > 0) {
// Of course we only want to check each table once
$checked_tables = $col_cand;
foreach ($col_cand AS $tab) {
if ($checked_tables[$tab] != 1 ) {
if ($checked_tables[$tab] != 1) {
$tsize[$tab] = PMA_Table::countRecords($db, $tab, true, false);
$checked_tables[$tab] = 1;
}