Skip to content

Commit

Permalink
Merge pull request #13413 from remicollet/issue-php72
Browse files Browse the repository at this point in the history
fix brackets
  • Loading branch information
nijel committed Jun 28, 2017
2 parents 946d3d1 + 49fecb8 commit 3933869
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libraries/sql.lib.php
Expand Up @@ -612,7 +612,7 @@ function PMA_isRememberSortingOrder($analyzed_sql_results)
|| $analyzed_sql_results['is_analyse'])
&& $analyzed_sql_results['select_from']
&& ((empty($analyzed_sql_results['select_expr']))
|| (count($analyzed_sql_results['select_expr'] == 1)
|| ((count($analyzed_sql_results['select_expr']) == 1)
&& ($analyzed_sql_results['select_expr'][0] == '*')))
&& count($analyzed_sql_results['select_tables']) == 1;
}
Expand Down

0 comments on commit 3933869

Please sign in to comment.