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 /view_create.php
parentadb39168cc384d7a808f836cf2e9f9585b82f864 (diff)
coding standard: no spaces inside braces
Diffstat (limited to 'view_create.php')
-rw-r--r--view_create.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/view_create.php b/view_create.php
index b950fe756d..ee0940db36 100644
--- a/view_create.php
+++ b/view_create.php
@@ -32,7 +32,7 @@ if (isset($_POST['submitoptions'])) {
$create_query .= ' VIEW ' . $_POST['view_name'] . $sep;
if (!empty($_POST['column_names'])) {
- $create_query .= ' ( ' . $_POST['column_names'] . ')' . $sep;
+ $create_query .= ' (' . $_POST['column_names'] . ')' . $sep;
}
$create_query .= ' AS ' . $_POST['sql_statement'] . $sep;