From 34b2d93a4830abfe64e2183258484d7bb524b3f7 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Thu, 24 Oct 2013 08:25:12 -0400 Subject: [PATCH] Fix coding style --- libraries/DBQbe.class.php | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) 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;