From df7a74523f1d0b5d620aa494af7457796a448618 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Mon, 29 Sep 2008 17:13:53 +0000 Subject: [PATCH] format code --- pdf_schema.php | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pdf_schema.php b/pdf_schema.php index aa84f6bee..0113cbaa4 100644 --- a/pdf_schema.php +++ b/pdf_schema.php @@ -629,14 +629,14 @@ class PMA_RT_Table { } // load fields //check to see if it will load all fields or only the foreign keys - if($show_keys){ + if ($show_keys) { $indexes = PMA_Index::getFromTable($this->table_name, $db); $all_columns = array(); - foreach($indexes as $index) { + foreach ($indexes as $index) { $all_columns = array_merge($all_columns, array_flip(array_keys($index->getColumns()))); } $this->fields = array_keys($all_columns); - }else{ + } else { while ($row = PMA_DBI_fetch_row($result)) { $this->fields[] = $row[0]; }