Skip to content

Commit

Permalink
bug #1814733 win: copy db to mixed name db fails
Browse files Browse the repository at this point in the history
  • Loading branch information
CybotTM committed Oct 17, 2007
1 parent 71e40e7 commit d9e81cb
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
1 change: 1 addition & 0 deletions ChangeLog
Expand Up @@ -24,6 +24,7 @@ $HeadURL: https://phpmyadmin.svn.sourceforge.net/svnroot/phpmyadmin/trunk/phpMyA
- bug #1811519 Can't delete user with a german umlaut.
- bug #1811519 [privileges] fixed used collation for accessing mysql.user in server privileges
- it should not be possible to move or copy a table to information_schema
- bug #1814733 win: copy db to mixed name db fails

2.11.1.2 (not yet released)
- fixed XSS in server_status.php, thanks to Omer Singer, The DigiTrust Group
Expand Down
7 changes: 7 additions & 0 deletions db_operations.php
Expand Up @@ -51,6 +51,13 @@
// PMA_DBI_query($local_query);
//} else {
// please indent ->

// lower_case_table_names=1 `DB` becomes `db`
$lower_case_table_names = PMA_DBI_fetch_value('SHOW VARIABLES LIKE "lower_case_table_names"', 0, 1);
if ($lower_case_table_names === '1') {
$newname = strtolower($newname);
}

$local_query = 'CREATE DATABASE ' . PMA_backquote($newname);
if (isset($db_collation)) {
$local_query .= ' DEFAULT' . PMA_generateCharsetQueryPart($db_collation);
Expand Down

0 comments on commit d9e81cb

Please sign in to comment.