diff --git a/libraries/DBQbe.class.php b/libraries/DBQbe.class.php index 8b93578989..6a46607a9e 100644 --- a/libraries/DBQbe.class.php +++ b/libraries/DBQbe.class.php @@ -989,7 +989,11 @@ class PMA_DbQbe { $orderby_clause = ''; $orderby_clauses = array(); - for ($column_index = 0; $column_index < $this->_criteria_column_count; $column_index++) { + for ( + $column_index = 0; + $column_index < $this->_criteria_column_count; + $column_index++ + ) { // if all columns are chosen with * selector, // then sorting isn't available // Fix for Bug #570698 @@ -1182,7 +1186,11 @@ class PMA_DbQbe $where_clause_columns = array(); $where_clause_tables = array(); // Now we need all tables that we have in the where clause - for ($column_index = 0; $column_index < count($this->_criteria); $column_index++) { + for ( + $column_index = 0; + $column_index < count($this->_criteria); + $column_index++ + ) { $current_table = explode('.', $_POST['criteriaColumn'][$column_index]); if (empty($current_table[0]) || empty($current_table[1])) { continue;