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:
authorMadhura Jayaratne <madhura.cj@gmail.com>2011-12-07 10:54:04 +0400
committerMadhura Jayaratne <madhura.cj@gmail.com>2011-12-07 10:54:04 +0400
commit3121006d8f5575150587ba26e326557120cc8190 (patch)
tree6b8bd3ed600a05a04c15077c40edbb570e3520bb /db_operations.php
parentc4944f560fcb42d0fbd6c8e90895f6020d2daf48 (diff)
Already contains a semicolon
Diffstat (limited to 'db_operations.php')
-rw-r--r--db_operations.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/db_operations.php b/db_operations.php
index 7e0309eec0..e4c559119a 100644
--- a/db_operations.php
+++ b/db_operations.php
@@ -134,7 +134,7 @@ if (strlen($db) && (! empty($db_rename) || ! empty($db_copy))) {
$sql_view_standin = PMA_getTableDefStandIn($db, $each_table, "\n");
PMA_DBI_select_db($newname);
PMA_DBI_query($sql_view_standin);
- $GLOBALS['sql_query'] .= "\n" . $sql_view_standin . ';';
+ $GLOBALS['sql_query'] .= "\n" . $sql_view_standin;
}
}