Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDieter Adriaenssens <ruleant@users.sourceforge.net>2011-09-05 16:28:17 +0400
committerDieter Adriaenssens <ruleant@users.sourceforge.net>2011-09-05 16:28:17 +0400
commit94c6836f8b16129a64383ac03beb4a9639ba9559 (patch)
treee05636d430dc9c001bbdf61bd80f2c8f9cc623cd /tbl_select.php
parente2864a383efd0b2c18c7c0967e315f07ccf5cf96 (diff)
fix coding style : control structures
Diffstat (limited to 'tbl_select.php')
-rw-r--r--tbl_select.php11
1 files changed, 4 insertions, 7 deletions
diff --git a/tbl_select.php b/tbl_select.php
index f2eb2d7f3a..00cecfe70c 100644
--- a/tbl_select.php
+++ b/tbl_select.php
@@ -252,14 +252,11 @@ echo PMA_generate_html_tabs(PMA_tbl_getSubTabs(), $url_params, '', 'topmenu2');
</fieldset>
<?php
-}
-
-
+} else {
+ /**
+ * Selection criteria have been submitted -> do the work
+ */
-/**
- * Selection criteria have been submitted -> do the work
- */
-else {
// Builds the query
$sql_query = 'SELECT ' . (isset($distinct) ? 'DISTINCT ' : '');