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:
authorSebastian Mendel <cybot_tm@users.sourceforge.net>2007-04-01 15:02:46 +0400
committerSebastian Mendel <cybot_tm@users.sourceforge.net>2007-04-01 15:02:46 +0400
commitcfeb30652642d995bb0c8d17988d33d11b02318f (patch)
tree33fec5cdc925d60888ee67c32dbfc0422c6bc29a /tbl_export.php
parentadb39168cc384d7a808f836cf2e9f9585b82f864 (diff)
coding standard: no spaces inside braces
Diffstat (limited to 'tbl_export.php')
-rw-r--r--tbl_export.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/tbl_export.php b/tbl_export.php
index 9a553ae102..d7d000a1a4 100644
--- a/tbl_export.php
+++ b/tbl_export.php
@@ -56,7 +56,7 @@ if (! empty($sql_query)) {
$wheres[] = $analyzed_sql[0]['where_clause'];
}
- if (count($wheres) > 0 ) {
+ if (count($wheres) > 0) {
$sql_query .= ' WHERE (' . implode(') AND (', $wheres) . ')';
}